Mostrando 1,841 - 1,860 Resultados de 5,772 Para Buscar '"Copi"', tiempo de consulta: 0.13s Limitar resultados
  1. 1841
    Publicado 2017
    Tabla de Contenidos: “…. -- There's more... -- Copying Request Offerings -- Views for different status as of Request Offerings -- Standalone Request Offerings -- Adding a Request Offering to an existing Service Offering -- Controlling the access to Request Offerings using Groups and User Roles in SCSM 2016 -- See also -- Creating Service Catalog Service Offerings -- Getting ready -- How to do it... -- How it works... -- There's more... -- Views for different status as of Service Offerings…”
    Libro electrónico
  2. 1842
    Publicado 2017
    Tabla de Contenidos:
    Libro electrónico
  3. 1843
    Publicado 2019
    Tabla de Contenidos: “…Intro -- Title Page -- Copyright Page -- Table of Contents -- Introduction -- About This Book -- Foolish Assumptions -- Icons Used in This Book -- Beyond the Book -- Where to Go from Here -- Part 1 Getting Started with Functional Programming -- Chapter 1 Introducing Functional Programming -- Defining Functional Programming -- Understanding its goals -- Using the pure approach -- Using the impure approach -- Considering Other Programming Paradigms -- Imperative -- Procedural -- Object-oriented -- Declarative -- Using Functional Programming to Perform Tasks -- Discovering Languages That Support Functional Programming -- Considering the pure languages -- Considering the impure languages -- Finding Functional Programming Online -- Chapter 2 Getting and Using Python -- Working with Python in This Book -- Creating better code -- Debugging functionality -- Defining why notebooks are useful -- Obtaining Your Copy of Anaconda -- Obtaining Analytics Anaconda -- Installing Anaconda on Linux -- Installing Anaconda on MacOS -- Installing Anaconda on Windows -- Understanding the Anaconda package -- Downloading the Datasets and Example Code -- Using Jupyter Notebook -- Defining the code repository -- Getting and using datasets -- Creating a Python Application -- Understanding cells -- Adding documentation cells -- Other cell content -- Running the Python Application -- Understanding the Use of Indentation -- Adding Comments -- Understanding comments -- Using comments to leave yourself reminders -- Using comments to keep code from executing -- Closing Jupyter Notebook -- Getting Help with the Python Language -- Chapter 3 Getting and Using Haskell -- Working with Haskell in This Book -- Obtaining and Installing Haskell -- Installing Haskell on a Linux system -- Installing Haskell on a Mac system -- Installing Haskell on a Windows system…”
    Libro electrónico
  4. 1844
    Publicado 2018
    Tabla de Contenidos: “…Deploying Cloud Functions -- Deploying from a local machine -- Deploying from a source repository -- Integrating with other Google services -- IAM and billing -- Cloud Functions and IAM -- Frameworks and tooling -- Summary -- Chapter 7: Google Compute Engine -- Understanding Compute Engine -- IaaS -- Infrastructure as Code (IaC) -- More than virtual machines -- When to use Compute Engine -- A straightforward migration path -- Host anything -- Building a robust global presence -- Long running and resource intensive processes -- Security and compliance -- Virtual machines on Google Compute Engine (GCE) -- Machine types -- Standard machine types -- High-memory machine types -- Mega-memory machine types -- High-CPU machine types -- Shared-core machine types -- Custom machine types -- Extended memory -- Other resources -- Disk storage -- GPUs -- Images -- Public images -- Premium images -- Community images -- Container images -- Managing Compute Engine instances -- Creating instances -- Remote access -- SSH access -- SCP access -- Remote Desktop Protocol (RDP) access -- Metadata server -- Default metadata -- Project-wide metadata -- Instance-specific metadata -- Setting and removing metadata -- Querying metadata from within instances -- Trying it out -- Modifying API responses -- Startup and shutdown scripts -- Startup scripts -- Shutdown Scripts -- Windows machines -- Updates and patches -- Availability policies -- Maintenance behavior -- Restart behavior -- Relocating an instance -- Storage solutions -- Persistent disks -- Standard and solid-state drive (SSD) persistent disks -- Persistent disk performance -- Boot disks -- Managing persistent disks -- Persistent disk snapshots -- Local SSDs -- Creating scalable solutions with GCE -- Custom images -- Creating images from a persistent disk -- Copying an image -- Creating images from snapshots…”
    Libro electrónico
  5. 1845
    Publicado 2019
    Tabla de Contenidos: “…Fill layers -- Shape layers -- Type layers -- Tackling Layer Basics -- Creating a new layer from scratch -- Using Layer via Copy and Layer via Cut -- Duplicating layers -- Dragging and dropping layers -- Using the Paste into Selection command -- Moving a Layer's Content -- Transforming Layers -- Adding Layer Masks -- Flattening and Merging Layers -- Flattening layers -- Merging layers -- Chapter 10 Simple Image Makeovers -- Cropping and Straightening Images -- Cutting away with the Crop tool -- Fixing distortion with the Perspective Crop tool -- Cropping with a selection border -- Straightening images -- Recomposing Images -- Employing One-Step Auto Fixes -- Auto Smart Tone -- Auto Smart Fix -- Auto Levels -- Auto Contrast -- Auto Haze Removal -- Auto Color Correction -- Auto Shake Reduction -- Auto Sharpen -- Auto Red Eye Fix -- Editing in Quick Mode -- Fixing Small Imperfections with Tools -- Cloning with the Clone Stamp tool -- Retouching with the Healing Brush -- Zeroing in with the Spot Healing Brush -- Repositioning with the Content-Aware Move tool -- Lightening and darkening with Dodge and Burn tools -- Smudging away rough spots -- Softening with the Blur tool -- Focusing with the Sharpen tool -- Sponging color on and off -- Replacing one color with another -- Chapter 11 Correcting Contrast, Color, and Clarity -- Editing Your Photos Using a Logical Workflow -- Adjusting Lighting -- Fixing lighting with Shadows/Highlights -- Using Brightness/Contrast -- Pinpointing proper contrast with Levels -- Adjusting Color -- Removing color casts automatically -- Adjusting with Hue/Saturation -- Eliminating color with Remove Color -- Switching colors with Replace Color -- Correcting with Color Curves -- Adjusting skin tones -- Defringing layers -- Eliminating haze -- Adjusting color temperature with photo filters -- Mapping your colors -- Adjusting Clarity…”
    Libro electrónico
  6. 1846
    Publicado 2015
    Tabla de Contenidos: “…The Hadoop Distributed Filesystem -- The Design of HDFS -- HDFS Concepts -- Blocks -- Namenodes and Datanodes -- Block Caching -- HDFS Federation -- HDFS High Availability -- The Command-Line Interface -- Basic Filesystem Operations -- Hadoop Filesystems -- Interfaces -- The Java Interface -- Reading Data from a Hadoop URL -- Reading Data Using the FileSystem API -- Writing Data -- Directories -- Querying the Filesystem -- Deleting Data -- Data Flow -- Anatomy of a File Read -- Anatomy of a File Write -- Coherency Model -- Parallel Copying with distcp -- Keeping an HDFS Cluster Balanced -- Chapter 4. …”
    Libro electrónico
  7. 1847
    por Hochstein, Lorin
    Publicado 2015
    Tabla de Contenidos: “…How Ansible Invokes Modules -- Generate a Standalone Python Script with the Arguments (Python Only) -- Copy the Module to the Host -- Create an Arguments File on the Host (Non-Python Only) -- Invoke the Module -- Expected Outputs -- Output Variables Ansible Expects -- Implementing Modules in Python -- Parsing Arguments -- Accessing Parameters -- Importing the AnsibleModule Helper Class -- Argument Options -- AnsibleModule Initializer Parameters -- Returning Success or Failure -- Invoking External Commands -- Check Mode (Dry Run) -- Documenting Your Module -- Debugging Your Module -- Implementing the Module in Bash -- Specifying an Alternaive Location for Bash -- Example Modules -- Chapter 11. …”
    Libro electrónico
  8. 1848
    Publicado 2017
    Tabla de Contenidos: “…. -- See also -- Chapter 3: Thread Synchronization Utilities -- Introduction -- Controlling concurrent access to one or more copies of a resource -- Getting ready -- How to do it... -- How it works... -- There's more... -- Fairness in semaphores -- See also -- Waiting for multiple concurrent events -- Getting ready -- How to do it... -- How it works... -- There's more... -- Synchronizing tasks in a common point -- Getting ready -- How to do it... -- How it works... -- There's more... -- Resetting a CyclicBarrier object -- Broken CyclicBarrier objects -- See also -- Running concurrent-phased tasks -- Getting ready -- How to do it... -- How it works... -- There's more... -- Registering participants in Phaser -- Forcing the termination of Phaser -- See also -- Controlling phase change in concurrent-phased tasks -- Getting ready -- How to do it... -- How it works... -- See also -- Exchanging data between concurrent tasks -- Getting ready -- How to do it... -- How it works... -- There's more... -- Completing and linking tasks asynchronously -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also... -- Chapter 4: Thread Executors -- Introduction -- Creating a thread executor and controlling its rejected tasks -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Executing tasks in an executor that returns a result -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also…”
    Libro electrónico
  9. 1849
    Publicado 2018
    Tabla de Contenidos: “…Model Editor -- 16.4.1. Copying an Existing PSpice Model -- 16.4.2. Model Import Wizard -- 16.4.3. …”
    Libro electrónico
  10. 1850
    Publicado 2017
    Tabla de Contenidos: “…. -- Chapter 5: STL Algorithm Basics -- Introduction -- Copying items from containers to other containers -- How to do it... -- How it works... -- Sorting containers -- How to do it... -- How it works... -- Removing specific items from containers -- How to do it... -- How it works... -- Transforming the contents of containers -- How to do it... -- How it works... -- Finding items in ordered and unordered vectors -- How to do it... -- How it works... -- Limiting the values of a vector to a specific numeric range with std::clamp -- How to do it... -- How it works…”
    Libro electrónico
  11. 1851
    Publicado 2009
    Tabla de Contenidos: “…Flying Solo: Preparing the Project -- Flying Solo: Creating the Opening Text -- Animating the Opening Text -- Creating the Digital Countdown Clock -- Animating the Clock Using Title Clips in Sequence -- Synchronizing the Clock Clips with the Beep -- Flying Solo: Adding the Four Video Clips to the Timeline -- Applying a PiP Effect to Each of the Video Clips -- Reversing the PiP Effect -- Flying Solo: Adding a Soundtrack and a Voice-over -- Making Adjustments, Rendering, and Exporting -- 6 Hollywood Movie Looks: Using Preset Effects -- Flying Solo: Preparing the Project -- Applying the Air Brush Effect -- Applying the Old Film Effect -- Adding Some "Flash" to the Clip -- Flying Solo: Adding Some Period Music -- Flying Solo: Applying Some Camera Shake -- Making Adjustments, Rendering, and Exporting -- 7 Hollywood Movie Looks: Custom Building a Movie Look -- Flying Solo: Preparing the Project -- Creating a Cinematic '60s Movie Look -- Copying Effects and Settings from One Clip to Another -- Creating a Cinematic '70s Movie Look -- Creating the Home Projector Look -- Flying Solo: Adding Some Music -- Making Adjustments, Rendering, and Exporting -- 8 Hollywood Movie Time: The Passing of Time Effect -- Flying Solo: Preparing the Project -- Marking the Individual Scenes -- Removing Time (Frames) from the Clip -- Adding a Cross Dissolve Between Clips -- Adjusting the Transitions -- Adding Sound FX -- Flying Solo: Using Titles and Fades -- Adding the Music Track -- Making Adjustments, Rendering, and Exporting -- 9 Hollywood Movie Time: Fast Times -- Flying Solo: Preparing the Project -- Adding the Foreground Video Clips -- Flying Solo: Increasing the Speed of the Crowd -- Matching the Appearance of the Two Clips -- Flying Solo: Adding the Soundtrack -- Making Adjustments, Rendering, and Exporting -- 10 Hollywood Movie Time: The Power of the Force-Reversing Time…”
    Libro electrónico
  12. 1852
    Publicado 2023
    Tabla de Contenidos: “…Managing Security and Permissions -- Publishing Active Directory Objects -- Making Active Directory Objects Available to Users -- Publishing Printers -- Publishing Shared Folders -- PowerShell for Active Directory -- Summary -- Exam Essentials -- Review Questions -- Chapter 8 Understanding Group Policies -- Introducing Group Policy -- Understanding Group Policy Settings -- The Security Settings Section of the GPO -- Client-Side Extensions -- Group Policy Objects -- Group Policy Inheritance -- Planning a Group Policy Strategy -- Implementing Group Policy -- Creating GPOs -- Linking Existing GPOs to Active Directory -- Forcing a GPO to Update -- Managing Group Policy -- Managing GPOs -- Security Filtering of a Group Policy -- Delegating Administrative Control of GPOs -- Controlling Inheritance and Filtering Group Policy -- Assigning Script Policies -- Understanding the Loopback Policy -- Managing Network Configuration -- Configuring Network Settings -- Automatically Enrolling User and Computer Certificates in Group Policy -- Redirecting Folders -- Managing GPOs with Windows PowerShell Group Policy Cmdlets -- Item-Level Targeting -- Back Up, Restore, Import, Copy, and Migration Tables -- Summary -- Exam Essentials -- Review Questions -- Chapter 9 Introduction to Microsoft Azure -- Understanding Cloud Concepts -- Cloud Advantages -- Understanding CapEx vs. …”
    Libro electrónico
  13. 1853
    Publicado 2023
    Tabla de Contenidos: “…Clear -- Unambiguous -- Consistent -- Prioritized -- Verifiable -- Words to Avoid -- Requirement Categories -- Audience-Oriented Requirements -- Business Requirements -- User Requirements -- Functional Requirements -- Nonfunctional Requirements -- Implementation Requirements -- FURPS -- FURPS+ -- Common Requirements -- Gathering Requirements -- Listen to Customers (and Users) -- Use the Five Ws (and One H) -- Who -- What -- When -- Where -- Why -- How -- Study Users -- Refining Requirements -- Copy Existing Systems -- Clairvoyance -- Brainstorm -- Recording Requirements -- UML -- User Stories -- Use Cases -- Prototypes -- Requirements Specification -- Validation and Verification -- Changing Requirements -- Digital Transformation -- What to Digitize -- How to Digitize -- Summary -- Exercises -- What You Learned in This Chapter -- Chapter 6 High-Level Design -- The Big Picture -- What to Specify -- Security -- Hardware -- User Interface -- Internal Interfaces -- External Interfaces -- Architecture -- Monolithic -- Client/Server -- Component-Based -- Service-Oriented -- Data-Centric -- Event-Driven -- Rule-Based -- Distributed -- Mix and Match -- Reports -- Other Outputs -- Database -- Audit Trails -- User Access -- Database Maintenance -- NoSQL -- Cloud Databases -- Configuration Data -- Data Flows and States -- Training -- UML -- Structure Diagrams -- Behavior Diagrams -- Activity Diagrams -- Use Case Diagram -- State Machine Diagram -- Interaction Diagrams -- Sequence Diagram -- Communication Diagram -- Timing Diagram -- Interaction Overview Diagram -- UML Summary -- Summary -- What You Learned in This Chapter -- Chapter 7 Low-Level Design -- Design Approaches -- Design-to-Schedule -- Design-to-Tools -- Process-Oriented Design -- Data-Oriented Design -- Object-Oriented Design -- Hybrid Approaches -- High, Low, and Iterative Design -- OO Design…”
    Libro electrónico
  14. 1854
    Publicado 2023
    Tabla de Contenidos: “…-- The layered filesystem -- The writable container layer -- Copy-on-write -- Graph drivers -- Creating Docker images -- Interactive image creation -- Using Dockerfiles -- Saving and loading images -- Lift and shift - containerizing a legacy app -- Analyzing external dependencies -- Source code and build instructions -- Configuration -- Secrets -- Authoring the Dockerfile -- Why bother? …”
    Libro electrónico
  15. 1855
    Publicado 2023
    Tabla de Contenidos: “…. -- How it works... -- See also -- Copying a Terraform module configuration -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using workspaces to manage environments -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Exporting the output in JSON -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Tainting resources -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Generating the dependency graph -- Getting ready -- How to do it... -- How it works... -- See also -- Using different Terraform configuration directories -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Testing and evaluating a Terraform expression -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Debugging the Terraform execution -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Chapter 7: Sharing Terraform Configuration with Modules -- Technical requirements -- Creating a Terraform module and using it locally -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Provisioning multiple instances of a Terraform module -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using modules from the public registry -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Sharing a Terraform module in the public registry using GitHub -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also -- Using another file inside a custom module -- Getting ready -- How to do it... -- How it works... -- There's more... -- See also…”
    Libro electrónico
  16. 1856
    Publicado 1998
    Tabla de Contenidos: “…Debugging by Printing -- printk -- Redirecting Console Messages -- How Messages Get Logged -- Turning the Messages On and Off -- Rate Limiting -- Printing Device Numbers -- Debugging by Querying -- Using the /proc Filesystem -- Implementing files in /proc -- An older interface -- Creating your /proc file -- The seq_file interface -- The ioctl Method -- Debugging by Watching -- Debugging System Faults -- Oops Messages -- System Hangs -- Debuggers and Related Tools -- Using gdb -- The kdb Kernel Debugger -- The kgdb Patches -- The User-Mode Linux Port -- The Linux Trace Toolkit -- Dynamic Probes -- Concurrency and Race Conditions -- Pitfalls in scull -- Concurrency and Its Management -- Semaphores and Mutexes -- The Linux Semaphore Implementation -- Using Semaphores in scull -- Reader/Writer Semaphores -- Completions -- Spinlocks -- Introduction to the Spinlock API -- Spinlocks and Atomic Context -- The Spinlock Functions -- Reader/Writer Spinlocks -- Locking Traps -- Ambiguous Rules -- Lock Ordering Rules -- Fine- Versus Coarse-Grained Locking -- Alternatives to Locking -- Lock-Free Algorithms -- Atomic Variables -- Bit Operations -- seqlocks -- Read-Copy-Update -- Quick Reference -- Advanced Char Driver Operations -- ioctl -- Choosing the ioctl Commands -- The Return Value -- The Predefined Commands -- Using the ioctl Argument -- Capabilities and Restricted Operations -- The Implementation of the ioctl Commands -- Device Control Without ioctl -- Blocking I/O -- Introduction to Sleeping -- Simple Sleeping -- Blocking and Nonblocking Operations -- A Blocking I/O Example -- Advanced Sleeping -- How a process sleeps -- Manual sleeps -- Exclusive waits -- The details of waking up -- Ancient history: sleep_on -- Testing the Scullpipe Driver -- poll and select -- Interaction with read and write -- Reading data from the device -- Writing to the device…”
    Tesis
  17. 1857
    por Arrell, Kathryn
    Publicado 2005
    Tabla de Contenidos: “…Overview of Oracle Database 10g for Linux on zSeries -- 1.1 What is Linux -- 1.2 Linux on zSeries -- 1.3 Why Oracle9i and Oracle 10g for Linux on zSeries -- 1.3.1 Expanded application portfolio -- 1.3.2 Cost savings -- 1.3.3 Server consolidation and faster time to market -- 1.4 Oracle Database 10g for Linux on zSeries -- 1.4.1 Oracle9i Database Server and Oracle Database 10g -- 1.4.2 Oracle9i Application Server and AS 10g -- 1.4.3 Oracle application solutions for Linux on zSeries -- 1.5 What distributions of Linux Oracle supports -- 1.6 Obtaining a copy of Oracle Database 10g for Linux on zSeries -- 1.7 Sizing workloads for Oracle10g for Linux on zSeries -- Chapter 2. …”
    Libro electrónico
  18. 1858
    Publicado 2003
    Tabla de Contenidos: “…Code generation -- Code generation -- Log wrapper code generation -- Creating the Java modeling project -- Using the copy procedure -- Using the move procedure -- Code generation -- Synchronizing the model and code -- Reverse engineering (Java) -- Create the reference model -- Use the reference model -- Extend the log wrapper -- PiggyBank EJB generation -- Creating the EJB modeling project -- Summary -- Chapter 11. …”
    Libro electrónico
  19. 1859
    por Barton, Rick
    Publicado 2013
    Tabla de Contenidos:
    Libro electrónico
  20. 1860
    Publicado 2010
    Tabla de Contenidos: “…-- Limitations and Restrictions of Database Snapshots -- Copy-on-Write Technology -- When to Use Database Snapshots -- Setup and Breakdown of a Database Snapshot -- Reverting to a Database Snapshot for Recovery -- Setting Up Snapshots Against a Database Mirror -- Database Snapshots Maintenance and Security Considerations -- Summary -- 33 Database Maintenance -- What's New in Database Maintenance -- The Maintenance Plan Wizard -- Managing Maintenance Plans Without the Wizard -- Executing a Maintenance Plan -- Maintenance Without a Maintenance Plan -- Database Maintenance Policies…”
    Libro electrónico