Mostrando 47,581 - 47,600 Resultados de 53,357 Para Buscar 'Liblar~', tiempo de consulta: 1.50s Limitar resultados
  1. 47581
    Publicado 2021
    Tabla de Contenidos: “…-- The leverage principle: exponential vs linear -- Social proof -- The power of small -- The challenge -- No magic pill -- Chapter 2 What is social media? …”
    Libro electrónico
  2. 47582
    por International Energy Agency
    Publicado 2022
    Tabla de Contenidos: “…-- Introduction -- Qualifications versus skills -- Transparency and information asymmetry -- Distrust -- Changing skill demand -- Assessing generic skills -- Developments in assessing higher education learning outcomes -- Methodological issues -- References -- 2 The Collegiate Learning Assessment -- a performance-based assessment of generic skills -- Introduction -- CLA+ -- CLA+ Scoring -- Scoring process -- CLA+ psychometrics -- Test design -- Reliability -- SRQ reliability -- PT reliability -- Correlations between scale scores -- Computing scale scores -- Establishing mastery levels -- References -- Annex 2.A. Linear equating procedure -- 3 CLA+ International -- Introduction -- CLA+ International recruitment -- CLA+ International collaborators -- CLA+ International assessment development and administration -- Performance Task (PT) and Selected-Response Question (SRQ) selection -- Translation and adaptation -- Cognitive labs -- Test administration and associated activities -- Important milestones and activities -- Administration -- Scoring process -- Scoring and equating -- Reporting -- References -- 4 Ensuring cross-cultural reliability and validity -- Introduction -- Theoretical background -- Performance tasks and scoring -- Cross-cultural challenges in PT scoring -- Method -- CLA+ -- United States context -- Finnish context -- PTs -- SRQs -- Translation and adaptation -- Scoring equivalency case study -- Results -- Scoring equivalency case study -- Relative Quality of Scores: How well does a translated and culturally adapted performance-based assessment requiring students to generate a written response get scored across countries and languages?. …”
    Libro electrónico
  3. 47583
    por International Energy Agency
    Publicado 2022
    Tabla de Contenidos: “…-- Introduction -- Qualifications versus skills -- Transparency and information asymmetry -- Distrust -- Changing skill demand -- Assessing generic skills -- Developments in assessing higher education learning outcomes -- Methodological issues -- References -- 2 The Collegiate Learning Assessment -- a performance-based assessment of generic skills -- Introduction -- CLA+ -- CLA+ Scoring -- Scoring process -- CLA+ psychometrics -- Test design -- Reliability -- SRQ reliability -- PT reliability -- Correlations between scale scores -- Computing scale scores -- Establishing mastery levels -- References -- Annex 2.A. Linear equating procedure -- 3 CLA+ International -- Introduction -- CLA+ International recruitment -- CLA+ International collaborators -- CLA+ International assessment development and administration -- Performance Task (PT) and Selected-Response Question (SRQ) selection -- Translation and adaptation -- Cognitive labs -- Test administration and associated activities -- Important milestones and activities -- Administration -- Scoring process -- Scoring and equating -- Reporting -- References -- 4 Ensuring cross-cultural reliability and validity -- Introduction -- Theoretical background -- Performance tasks and scoring -- Cross-cultural challenges in PT scoring -- Method -- CLA+ -- United States context -- Finnish context -- PTs -- SRQs -- Translation and adaptation -- Scoring equivalency case study -- Results -- Scoring equivalency case study -- Relative Quality of Scores: How well does a translated and culturally adapted performance-based assessment requiring students to generate a written response get scored across countries and languages?. …”
    Libro electrónico
  4. 47584
    Publicado 2017
    Tabla de Contenidos: “…. -- See also -- Chapter 5: Beyond the Standard Library -- Introduction -- Foundation -- Getting ready -- How to do it... -- How it works... -- See also -- Networking -- How to do it... -- How it works... -- See also -- JSON -- Getting ready -- How to do it... -- There's more... -- See also -- XML -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Cocoa Touch -- Getting ready -- How to do it... -- There's more... -- See also -- Chapter 6: Swift Playgrounds -- Introduction -- Using Swift Playgrounds for UI -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Import Resources into Playgrounds -- Getting ready -- How to do it... -- How it works... -- See also -- Import Code into Playgrounds -- Getting ready -- How to do it... -- How it works... -- See also -- Multi-Page Playgrounds -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Chapter 7: Server-Side Swift -- Introduction -- Swift on Ubuntu -- Getting started -- How to do it... -- There's more... -- Building a REST API using Vapor -- Getting started -- How to do it... -- How it works... -- There's more... -- See also -- Persistence with Vapor using Postgres -- Getting started -- How to do it... -- There's more... -- See also -- Hosting your Vapor app on Heroku -- Getting started -- How to do it... -- See also -- Chapter 8: Performance and Responsiveness in Swift -- Introduction…”
    Libro electrónico
  5. 47585
    Publicado 2021
    Tabla de Contenidos: “…-- Dimensionality Reduction with Tapkee -- Introducing Tapkee -- Linear and Nonlinear Mappings -- Regression with Vowpal Wabbit -- Preparing the Data -- Training the Model -- Testing the Model -- Classification with SciKit-Learn Laboratory -- Preparing the Data -- Running the Experiment -- Parsing the Results -- Summary -- For Further Exploration -- Chapter 10. …”
    Libro electrónico
  6. 47586
    por Bandyopadhyay, Samir Kumar
    Publicado 2008
    Tabla de Contenidos: “…Cover -- Preface -- Contents -- Chapter 1: Fundamentals of Data Representation -- 1.1 Basic Concepts of Data Representation -- 1.2 Data Type -- 1.3 Data Abstraction and Abstract Data Types -- 1.4 System-Defined Data Type -- 1.5 Primitive Data Structures and their Representation -- Exercises -- Chapter 2: Fundamentals of Data Structures- Basic Concepts -- 2.1 Introduction to Data Structure -- 2.2 Algorithm for Data Structure -- 2.3 Notation for Algorithm -- 2.3.1 Flowcharts -- 2.3.2 Pseudocode -- 2.3.3 Decision Tables -- 2.4 Modularisation to Algorithm Design -- 2.4.1 Top-Down Design Approach -- 2.4.2 Bottom-Up Approach -- 2.5 Analysis of Algorithms -- 2.5.1 Asymptotic Analysis -- 2.5.2 Space Complexity -- 2.6 Structured Programming -- Exercises -- Chapter 3: Arrays -- 3.1 Linear Arrays -- 3.2 Arrays in C -- 3.3 Initializing Arrays -- 3.4 Insertion and Deletion -- 3.5 Multidimensional Arrays -- 3.6 Row-Major and Column-Major Order -- Exercises -- Chapter 4: String Processing and Pattern Matching -- 4.1 Introduction to String Processing -- 4.2 String Representation -- 4.3 String Manipulation -- 4.4 Pattern Matching -- 4.5 The Brute-Force Algorithm -- 4.5.1 Algorithm: Brute-Force Pattern Matching -- 4.6 Kunth-Morris-Pratt Algorithm -- 4.6.1 Algorithm A: Kunth-Morris-Pratt Pattern Matching -- 4.6.2 Algorithm B: Kunth-Morris-Pratt Pattern Matching -- 4.7 Boyer-Moore Algorithm -- Exercises -- Chapter 5: Pointers -- 5.1 Introduction -- 5.2 Fundamentals and Defining Pointers -- 5.3 Type Specifiers and Scalars for Pointers -- 5.4 Operations Using Pointers -- 5.5 Passing Pointers to Functions -- 5.6 Pointers and Arrays, Pointer Arithmetic -- 5.7 Pointers and Two-Dimensional Arrays -- 5.8 Array of Pointers -- 5.9 Pointers to Pointers -- 5.10 Pointers to Functions -- 5.11 Command the Arguments -- Exercises -- Chapter 6: Stacks and Queues…”
    Libro electrónico
  7. 47587
    Publicado 2015
    Tabla de Contenidos: “…-- Network programming with Python -- Breaking a few eggs -- Taking it from the top -- Downloading an RFC -- Looking deeper -- Programming for TCP/IP networks -- Firewalls -- Network Address Translation -- IPv6 -- Summary -- Chapter 2 : HTTP and Working with the Web -- Request and response -- Requests with urllib -- Response objects -- Status codes -- Handling problems -- HTTP headers -- Customizing requests -- Content compression -- Multiple values -- Content negotiation -- Content types -- User agents -- Cookies -- Cookie handling -- Know your cookies -- Redirects -- URLs -- Paths and relative URLs -- Query strings -- URL encoding -- URLs in summary -- HTTP methods -- The HEAD method -- The POST method -- Formal inspection -- HTTPS -- The Requests library -- Handling errors with Requests -- Summary -- Chapter 3 : APIs in Action -- Getting started with XML -- The XML APIs -- The basics of ElementTree -- Pretty printing -- Element attributes -- Converting to text -- The Amazon S3 API -- Registering with AWS -- Authentication -- Setting up an AWS user -- Regions -- S3 buckets and objects -- An S3 command-line client -- Creating a bucket with the API -- Uploading a file -- Retrieving an uploaded file through a web browser -- Displaying an uploaded file in a web browser -- Downloading a file with the API…”
    Libro electrónico
  8. 47588
    Publicado 2023
    Tabla de Contenidos: “…Reset handler -- Allocating the stack -- Fault handlers -- Memory layout -- Building and running the boot code -- The makefile -- Running the application -- Multiple boot stages -- Bootloader -- Building the image -- Debugging a multi-stage system -- Shared libraries -- Remote firmware updates -- Secure boot -- Summary -- Chapter 5: Memory Management -- Technical requirements -- Memory mapping -- Memory model and address space -- The code region -- The RAM regions -- Peripheral-access regions -- The system region -- Order of memory transactions -- The execution stack -- Stack placement -- Stack overflows -- Stack painting -- Heap management -- Custom implementation -- Using newlib -- Limiting the heap -- Multiple memory pools -- Common heap usage errors -- The memory protection unit -- MPU configuration registers -- Programming the MPU -- Summary -- Part 3 - Device Drivers and Communication Interfaces -- Chapter 6: General-Purpose Peripherals -- Technical requirements -- Bitwise operations -- The interrupt controller -- Peripherals' interrupt configuration -- System time -- Adjusting the flash wait states -- Clock configuration -- Clock distribution -- Enabling the SysTick -- Generic timers -- GPIO -- Pin configuration -- Digital output -- PWM -- Digital input -- Interrupt-based input -- Analog input -- The watchdog -- Summary -- Chapter 7: Local Bus Interfaces -- Technical requirements -- Introducing serial communication -- Clock and symbol synchronization -- Bus wiring -- Programming the peripherals -- UART-based asynchronous serial bus -- Protocol description -- Programming the controller -- Hello world! …”
    Libro electrónico
  9. 47589
    por Witt, Ulrich
    Publicado 2022
    Tabla de Contenidos: “…Zur Sinnhaftigkeit nicht-linearer Ansätze in der dynamischen Wirtschaftstheorie -- 7. …”
    Libro electrónico
  10. 47590
    Publicado 2023
    Tabla de Contenidos: “…-- Buddies -- Inviting Buddies -- Other pages -- What you'll learn -- Summary -- Chapter 3: XAML and Fluent C# -- Technical requirements -- Understanding the structure of XAML -- The code-behind file -- Exploring the layout options -- VerticalStackLayout -- Image -- Label -- Code-behind and event handlers -- If you can do it in XAML, you can do it in C# -- C# versus Fluent C# -- Summary -- Quiz -- Try it out -- Chapter 4: MVVM and Controls -- Technical requirements -- Setting up for MVVM -- Creating folders -- The MVVM Community Toolkit -- Exploring views -- Forget Me Not labels -- Data binding -- Creating a public property -- Setting up BindingContext -- Assigning values to the View Model class properties -- Implementing Binding -- ViewModel versus code-behind -- Views -- Images -- Button properties -- ImageButton -- TapGestureRecognizer -- Entering text -- Behaviors -- Popups and dialogs -- Presenting the user with a choice -- ActionSheet -- Displaying a prompt -- Toast -- Snackbar -- BoxView -- Frame -- Brushes -- The Solid brush -- LinearGradientBrush -- RadialGradientBrush -- Summary -- Quiz -- You try it -- Chapter 5: Advanced Controls -- Technical requirements -- Keeping the user informed of activity -- ActivityIndicator -- ProgressBar -- Moving event handling to ViewModel -- Breaking it down -- Sending and receiving messages -- Getting started with WeakReferenceMessenger…”
    Libro electrónico
  11. 47591
    por Tome, Eric
    Publicado 2024
    Tabla de Contenidos: “…Cover -- Title Page -- Copyright and Credits -- Contributors -- Table of Contents -- Preface -- Part 1 - Introduction to Data Engineering, Scala, and an Environment Setup -- Chapter 1: Scala Essentials for Data Engineers -- Technical requirements -- Understanding functional programming -- Understanding objects, classes, and traits -- Classes -- Object -- Trait -- Working with higher-order functions (HOFs) -- Examples of HOFs from the Scala collection library -- Understanding polymorphic functions -- Variance -- Option type -- Collections -- Understanding pattern matching -- Wildcard patterns -- Constant patterns -- Variable patterns -- Constructor patterns -- Sequence patterns -- Tuple patterns -- Typed patterns -- Implicits in Scala -- Summary -- Further reading -- Chapter 2: Environment Setup -- Technical requirements -- Setting up a cloud environment -- Leveraging cloud object storage -- Using Databricks -- Local environment setup -- The build tool -- Summary -- Further reading -- Part 2 - Data Ingestion, Transformation, Cleansing, and Profiling Using Scala and Spark -- Chapter 3: An Introduction to Apache Spark and Its APIs - DataFrame, Dataset, and Spark SQL -- Technical requirements -- Working with Apache Spark -- How do Spark applications work? …”
    Libro electrónico
  12. 47592
    Publicado 2024
    Tabla de Contenidos: “…-- Leaf futures -- Non-leaf futures -- A mental model of an async runtime -- What the Rust language and standard library take care of -- I/O vs CPU-intensive tasks -- Summary -- Chapter 7: Coroutines and async/await -- Technical requirements -- Introduction to stackless coroutines -- An example of hand-written coroutines -- Futures module -- HTTP module -- Do all futures have to be lazy? …”
    Libro electrónico
  13. 47593
    Publicado 2015
    Tabla de Contenidos: “…Manual Creation of Application Signatures -- Automatic Signature Generation -- Flow Set Construction -- Extraction of Common Terms -- Signature Distiller -- Considerations -- Machine Learning-Based Classification Technique -- Feature Selection -- Supervised Machine Learning Algorithms -- Naïve Bayes Method -- Unsupervised Machine Learning Algorithms -- Expectation-Maximization -- K-Means Clustering -- Classifier Performance Evaluation -- Proxy versus Classifier -- Summary -- Chapter 8 Retrospective Analysis -- Data Acquisition -- Logs and Retrospective Analysis -- Log Formats -- Log Management and Analysis -- Packet Captures -- Capture Points -- Capture Formats -- Capture a Large Volume of Data -- Data Indexing and Query -- B-tree Index -- B-tree Search -- B-tree Insertion -- Range Search and B+-tree -- Bitmap Index -- Bitmap Index Search -- Bitmap Index Compression -- Inverted File Index -- Inverted File -- Inverted File Index Query -- Inverted File Compression -- Performance of a Retrospective Analysis System -- Index Sizes -- Index Building Overhead -- Query Response Delay -- Scalability -- Notes on Building a Retrospective Analysis System -- MapReduce and Hadoop -- MapReduce for Parallel Processing -- Hadoop -- Open Source Data Storage and Management Solution -- Why a Traditional RDBMS Falls Short -- NoSQL and Search Engines -- NoSQL and Hadoop -- Summary -- Chapter 9 Mobile Security -- Mobile Device Management, or Lack Thereof -- Mobile Applications and Their Impact on Security -- Security Threats and Hazards in Mobile Computing -- Cross-Origin Vulnerability -- Near Field Communication -- Application Signing Transparency -- Library Integrity and SSL Verification Challenges -- Ad Fraud -- Research Results and Proposed Solutions -- Infrastructure-Centric Mobile Security Solution -- Towards the Seamless Integration of WiFi and Cellular Networks…”
    Libro electrónico
  14. 47594
    Publicado 2024
    Tabla de Contenidos: “…-- Configuring defaults -- Configuring inspection -- Configuring bindings -- Configuring performance -- Configuring detection -- Configuring filters -- Configuring output -- Configuring your environment -- HOME_NET -- EXTERNAL_NET -- HTTP_PORTS -- The stream_tcp inspector -- Optimal configuration and tuning -- Managing multiple policies and configurations -- Summary -- Part 3: Snort 3 Packet Analysis -- Chapter 6: Data Acquisition -- The functionality of the DAQ layer -- The performance of the DAQ Layer -- Factors affecting packet capture performance -- The consequence of packet capture performance degradation -- Packet capture in Snort -- Before DAQ -- The DAQ module - introduced in Snort 2.9 -- The Snort 3 implementation of the DAQ layer -- The DAQ library API -- DAQ modules -- Configuring DAQ -- Summary -- Chapter 7: Packet Decoding -- OSI layering and packet structure -- Data encapsulation and decapsulation -- The role of packet decoding (Codecs) -- Packet decoding in Snort 3 -- EthCodec - a layer 2 codec -- IPv4Codec - a layer 3 codec -- TcpCodec - a layer 4 codec -- Code structure and other codecs -- Summary -- Chapter 8: Inspectors -- The role of inspectors -- Types of inspectors -- Network inspectors -- Service inspectors -- Stream inspectors -- Snort 3 inspectors -- Network inspectors -- Service inspectors…”
    Libro electrónico
  15. 47595
    Publicado 2023
    Tabla de Contenidos: “…-- Introducing Azure DevOps -- Introducing Azure Pipelines and its components -- Exploring the key components -- Signing up for Azure Pipelines -- Creating Azure pipelines -- Feature availability -- Availability of source version control repositories -- Understanding the YAML structure of Azure Pipelines -- Viewing the Azure pipelines' status -- Comparing Azure Pipelines with other CI/CD tools -- Setting up agent pools -- Creating a PAT -- Setting up self-hosted agents -- Setting up deployment groups -- Summary -- Chapter 2: Creating Build Pipelines -- Creating a build pipeline with a single job -- Creating tasks -- Creating multiple jobs -- Creating triggers -- Creating stages -- Summary -- Chapter 3: Setting Variables, Environments, Approvals, and Checks -- Creating a service connection for Azure resources -- Exploring Azure app registration -- Creating a service connection -- Managing global variables and secret files -- Creating a variable group library -- Uploading and selecting a secret file -- Creating a release pipeline -- Summary -- Chapter 4: Extending Advanced Azure Pipelines Using YAML -- Creating a build pipeline using YAML -- Creating a release pipeline using YAML -- Cloning, exporting, and importing a YAML pipeline -- Complex YAML configurations -- YAML template reuse -- YAML template expressions -- Advantages and limitations of YAML-based pipelines -- Summary -- Part 2: Azure Pipelines in Action -- Chapter 5: Implementing the Build Pipeline Using Deployment Tasks -- Working with Node.js and NPM tasks -- Working with .NET Core CLI tasks -- Working with Docker tasks…”
    Libro electrónico
  16. 47596
    Publicado 2023
    Tabla de Contenidos: “…Liens vers les documents de référence (consultés le 26 mai 2023) -- 5 Services -- Introduction -- Comportement du contribuable -- Gestion de la demande de services -- Favoriser le libre-service -- Assistants virtuels -- Applications mobiles -- Inclusion numérique -- Services collaboratifs -- Bibliographie -- Annexe 5.A. …”
    Libro electrónico
  17. 47597
    Publicado 2024
    Tabla de Contenidos: “…Model-free confidence intervals and perfect nodes -- References -- Chapter 3: Gentle introduction to linear algebra - synthetic time series -- Abstract -- 3.1. …”
    Libro electrónico
  18. 47598
    Publicado 2024
    Tabla de Contenidos: “…Chapter 4: Organizational learning theories and technology -- Introduction -- Learning organizations -- Communities of practice -- Learning preferences and experiential learning -- Social discourse and the use of language -- Identity -- Skills -- Emotion -- Linear development in learning approaches -- Chapter 5: Managing organizational learning and technology -- The role of line management -- Line managers -- First-line managers -- Supervisor -- Management vectors -- Knowledge management -- Change management -- Change management for IT organizations -- Social networks and information technology -- Chapter 6: Digital technology platforms and the future of work -- Introduction -- Process barriers -- Data-centric mindsets and organizational resilience in data platform companies -- Understanding organizational resilience's relationship to data platforms -- Data platform architecture and resilience -- Proliferation of data platforms -- Data platforms and leadership -- Product leadership -- Data platform executive leadership -- Intrapreneurism versus entrepreneurism -- Vision versus reason -- Steering and build-measure-learn -- Accelerate -- Common leadership strategies -- Intrapreneurial leadership considerations based on types of data platforms -- Summary -- Chapter 7: Virtual teams and outsourcing -- Introduction -- Status of virtual teams -- Management considerations -- Dealing with multiple locations -- Externalization -- Internalization -- Combination -- Socialization -- Externalization dynamism -- Internalization dynamism -- Combination dynamism -- Socialization dynamism -- Dealing with multiple locations and outsourcing -- Revisiting social discourse -- Identity -- Skills -- Emotion -- Chapter 8: Organizational learning, IT, and technology disruptions -- Introduction -- Siemens AG -- Aftermath -- ICAP -- Five years later -- General Electric (GE)…”
    Libro electrónico
  19. 47599
    por Bush, Lee
    Publicado 2024
    Tabla de Contenidos: “…-- Identity Insights -- Race and Ethnicity -- Advice about Using Slang -- Ability -- Age -- Gender "Norms" -- LGBTQ+ -- Religion -- Language Considerations -- Translation and Localization -- Normalization -- Bibliography -- Chapter 3: Centering DEI in Strategic Writing -- DEI at the Center of Strategic Writing -- Step 1: Learn about History and Social Identities -- Step 2: Consider How Circumstances Affect Audiences Differently -- Step 3: Brainstorm Topics and Keep a Resource Library -- Step 4: Avoid Stereotypes and Use Inclusive Language -- Using Generative Artificial Intelligence (AI) in Inclusive Writing -- Bibliography -- Chapter 4: Visual Storytelling: Reframing Diversity and Inclusion -- Visuals + Storytelling = Visual Storytelling -- "You Don't Know Me" -- Know That You Don't Know -- Reframing with the 3Ps -- Tokenism: The Fallacy of Checking the Box -- Practicing Visual Intersectionality -- Finding Inclusive Imagery -- Making Visual Stories Accessible…”
    Libro electrónico
  20. 47600
    Publicado 2019
    Tabla de Contenidos: “…Pecado Original y Teología Fundamental / Juan Pedro Rivero González -- Hablar de María hoy. La mariología después del Concilio Vaticano II / Carlos García Llata -- La reforma litúrgica del Concilio Vaticano II, una tarea inacabada / José Javier Rodríguez Velasco -- La pasión por Dios en la vida y obra de santo Tomás de Aquino / Manuel Ángel Martínez Juan -- Teología y Espiritualidad. …”
    991005207479706719