Mostrando 801 - 820 Resultados de 981 Para Buscar '"Crash"', tiempo de consulta: 0.10s Limitar resultados
  1. 801
    por Mariappan, P., Dr
    Publicado 2013
    Tabla de Contenidos: “…Answers to the Exercise Problems -- Review Questions -- Chapter 5: Assignment Problem -- 5.1 Introduction -- 5.2 General Model of the Assignment Problem -- 5.3 Conversion into an Equivalent LPP -- 5.4 Solution to the Assignment Problem -- 5.5 Travelling Salesman Problem -- Exercise Problems -- Answers to the Exercise Problems -- Review Questions -- Chapter 6: PERT - CPM -- 6.1 Introduction -- 6.1.1 Activity -- 6.1.2 Activity Duration/Activity Time -- 6.1.3 Event -- 6.1.4 Network/Arrow Diagram of a Project -- 6.2 Method for Construction of a Network -- 6.3 Numbering the Nodes -- 6.3.1 Dummy Activity -- 6.3.2 Precedence Relationships -- 6.4 Critical Path Method (CPM) -- 6.4.1 ES and EC Time of an Activity -- 6.4.2 Latest Start (LS) and Latest Completion (LC) Time of an Activity -- 6.4.3 Total Slack (TS) -- 6.4.4 Free Slack (FS) -- 6.4.5 Independent Float (IF) -- 6.4.6 Critical Activity and Critical Path -- 6.5 Project Evaluation Review Technique (PERT) -- 6.6 PERT-Cost -- 6.6.1 Crashing -- 6.6.2 Project Cost -- 6.7 Resource Levelling -- Exercise Problems -- Answers to the Exercise Problems -- Review Questions -- Chapter 7: Sequencing -- 7.1 Introduction -- 7.1.1 Assumptions -- 7.2 Johnson's Method (Rule) -- 7.3 Graphical Method -- Exercise Problems -- Answers to the Exercise Problems -- Review Questions -- Chapter 8: Queuing Theory -- 8.1 Introduction -- 8.2 Some Queuing Terminologies -- 8.2.1 The Input/Arrival Process -- 8.2.2 Queue Discipline -- 8.2.3 Service Mechanism -- 8.2.4 Service Channel -- 8.2.5 Maximum Capacity of the Queue -- 8.2.6 Classification of Queues -- 8.2.7 Methods Used to Solve a Queuing Situation -- 8.3 Model : 1 Single Server Model with Infinite Queue (M/M/1): (∞/FCFS) -- 8.4 Model : 2 Single Server Model with Finite Queue (M/M/1): (N/FCFS) -- 8.5 Model : 3 Multi-server Model with Infi nite Queue (M/M/C): (∞/FCFS)…”
    Libro electrónico
  2. 802
    por Jordan, Ted
    Publicado 2023
    Tabla de Contenidos: “…Chapter 9 Managing Linux Processes -- Understanding Linux Processes -- Types of Linux Programs -- User Processes Versus System Processes -- How Linux Processes Are Loaded -- Managing Processes -- Starting System Processes -- Viewing Running Processes -- Prioritizing Processes -- Managing Foreground and Background Processes -- Ending a Running Process -- Keeping a Process Running After Logout -- Exercise 9-1: Working with Linux Processes -- Scheduling Jobs -- Using the at Daemon -- Using the cron Daemon -- Exercise 9-2: Scheduling Linux Processes -- Using systemd timers -- Chapter Review -- Questions -- Answers -- Chapter 10 Managing Linux Applications -- Using a Package Manager to Install Applications -- Installing Applications on Red Hat with RPM -- RPM Package Naming Conventions -- RPM Command Options -- RPM Application Installation -- RPM Application Upgrades -- RPM Application Removal -- RPM Application Verification -- RPM Database Querying -- RPM Conversion to CPIO -- Exercise 10-1: Practicing Package Manipulation with RPM -- Installing RPMs with YUM, DNF, and ZYpp -- The YUM Package Manager -- Exercise 10-2: Practicing Package Manipulation with YUM -- The DNF Package Manager -- The ZYpp Package Manager -- Installing Applications on Debian with dpkg -- Debian Package Naming Conventions -- Managing Applications with dpkg -- Viewing Application Information with apt-cache -- Installing Applications on Debian with APT -- Troubleshooting an Application Crash -- Using Universal Linux App Stores -- Snap Fundamentals -- Flatpak Fundamentals -- AppImage Fundamentals -- Installing Applications from Source Code -- Preparing the Installation Files -- Compiling the Executable -- Installing the Executable -- Exercise 10-3: Building Software from Source Code -- Uninstalling Software Compiled from Source Code -- Managing Shared Libraries…”
    Libro electrónico
  3. 803
    por Vanhove, Sander
    Publicado 2024
    Tabla de Contenidos: “…-- Additional exercises - Sharpening the axe -- Summary -- Quiz time -- Chapter 10: Creating Menus, Making Enemies, and Using Autoloads -- Technical requirements -- Creating a menu -- Control nodes -- Creating a basic start menu -- Setting the main scene -- Making enemies -- Constructing the base scene -- Navigating enemies -- Writing the enemy script -- Damaging the player in a collision -- Spawning enemies and collectibles -- Making a Game Over screen -- Shooting projectiles -- Creating the base scene -- Writing the logic of the projectile -- Spawning projectiles -- Storing highscores in autoloads -- Using an autoload -- Creating a HighscoreManager autoload -- Autoloads in the remote tree -- Adding a UI in the main menu and game scene -- Using the highscore in the main menu -- Additional exercises - Sharpening the axe -- Summary -- Quiz time -- Chapter 11: Playing Together with Multiplayer -- Technical requirements -- A crash course in computer networking -- What is a Transport Layer? …”
    Libro electrónico
  4. 804
    Libro
  5. 805
    Publicado 2021
    Tabla de Contenidos: “…WebAssembly and client-side .NET development -- Creating a Blazor Wasm application -- Building a simple application for tracking tasks -- Exploring Blazor Wasm deployment options -- Deployment options for Blazor Wasm projects -- Publishing Blazor to Azure Static Web Apps hosting -- Pushing the project to GitHub -- Creating an Azure Static Web Apps resource -- Publishing an application with GitHub Actions -- Hosting your Blazor application in the WinUI WebView2 -- Summary -- Questions -- Chapter 13: Building, Releasing, and Monitoring Applications with Visual Studio App Center -- Technical requirements -- Getting started with Visual Studio App Center -- Creating an App Center account -- Creating your first App Center application -- Setting up builds in App Center -- Integrating App Center with a GitHub repository -- Deploying your application with App Center -- Creating early releases of your application or beta testers -- Application monitoring and analytics -- Instrumenting your code -- Gathering and analyzing App Center crash reports -- Summary -- Questions -- Chapter 14: Packaging and Deploying WinUI Applications -- Technical requirements -- Discovering application packaging and MSIX basics -- What is MSIX? …”
    Libro electrónico
  6. 806
    Publicado 2021
    Tabla de Contenidos: “…Overriding a default value from a subclass -- Adding extra parameters from a subclass -- Calling a base class method -- Using the same name twice -- Chapter 7 Sidestepping Errors -- Understanding Exceptions -- Handling Errors Gracefully -- Being Specific about Exceptions -- Keeping Your App from Crashing -- Adding an else to the Mix -- Using try . . . except . . . else . . . finally -- Raising Your Own Exceptions -- Book 3 Working with Libraries -- Chapter 1 Working with External Files -- Understanding Text and Binary Files -- Opening and Closing Files -- Reading a File's Contents -- Looping through a File -- Looping with readlines() -- Looping with readline() -- Appending versus overwriting files -- Using tell() to determine the pointer location -- Moving the pointer with seek() -- Reading and Copying a Binary File -- Conquering CSV Files -- Opening a CSV file -- Converting strings -- Converting to integers -- Converting to date -- Converting to Boolean -- Converting to floats -- Converting from CSV to Objects and Dictionaries -- Importing CSV to Python objects -- Importing CSV to Python dictionaries -- Chapter 2 Juggling JSON Data -- Organizing JSON Data -- Understanding Serialization -- Loading Data from JSON Files -- Converting an Excel date to a JSON date -- Looping through a keyed JSON file -- Converting Firebase timestamps to Python dates -- Loading unkeyed JSON from a Python string -- Loading keyed JSON from a Python string -- Changing JSON data -- Removing data from a dictionary -- Dumping Python Data to JSON -- Chapter 3 Interacting with the Internet -- Seeing How the Web Works -- Understanding the mysterious URL -- Exposing the HTTP headers -- Opening a URL from Python -- Posting to the web with Python -- Scraping the web with Python -- Parsing part of a page -- Storing the parsed content -- Saving scraped data to a JSON file…”
    Libro electrónico
  7. 807
    por Meyers, Michael, 1961-
    Publicado 2012
    Tabla de Contenidos: “…-- Using Remote Access -- Dial-Up to the Internet -- Private Dial-Up -- Dedicated Connection -- Remote Terminal -- Chapter Review -- Questions -- Answers -- Chapter 15 Wireless Networking -- Historical/Conceptual -- Test Specific -- Wi-Fi Standards -- 802.11 -- 802.11b -- 802.11a -- 802.11g -- 802.11n -- Wireless Networking Security -- Power over Ethernet -- Implementing Wi-Fi -- Performing a Site Survey -- Installing the Client -- Setting Up an Ad Hoc Network -- Setting Up an Infrastructure Network -- Extending the Network -- Verify the Installation -- Troubleshooting Wi-Fi -- Hardware Troubleshooting -- Software Troubleshooting -- Connectivity Troubleshooting -- Configuration Troubleshooting -- Chapter Review -- Questions -- Answers -- Chapter 16 Protecting Your Network -- Test Specific -- Common Threats -- System Crash/Hardware Failure…”
    Libro electrónico
  8. 808
    Publicado 2016
    Tabla de Contenidos: “…Detect Whether the Snake Crashes into Itself or a Wall -- The Complete Program -- Version 2.0: Add Bonus Fruit -- Cheat Mode: Invincibility -- Modify the Head -- Modify the Body Code -- Cheat Mode: Chop Off Your Tail! …”
    Libro electrónico
  9. 809
    Publicado 2010
    Tabla de Contenidos: “…RGB or YCrCb: Choosing a Color Space -- Specifying Capture Settings -- Specifying QuickTime Settings for Video and Audio Capture -- Specifying Device Control Settings -- Configuring Audio/Video Output Settings -- Configuring different Audio/Video outputs for playback and recording -- How to "Trash Your Prefs" -- Specifying User Preferences and System Settings -- Setting Editing Preferences -- Setting Label Preferences -- Customizing the Timeline Display -- Specifying Render Control Settings -- Specifying Audio Output Settings -- Setting Scratch Disk Preferences -- FCP Protocol: Scratch Disks -- Specifying Search Folder Preferences -- Specifying Memory & Cache Settings -- Specifying Playback Control Settings -- Setting External Editors Preferences -- Specifying Effect-Handling Preferences -- Customizing Final Cut Pro -- Creating Custom Screen Layouts -- Creating Custom Keyboard Layouts -- Creating Custom Shortcut Buttons -- Chapter 4: Projects, Sequences, and Clips -- Anatomy of an FCP Project -- Project item types -- About Projects -- Using Save As to Protect Your Work -- Viewing and setting project properties -- Using the Autosave Vault -- Setting Autosave Vault location and preferences -- Using Autosave to recover from a crash -- You Need Backup -- Undoing Changes -- FCP Protocol: Undoing Changes in Multiple Projects -- What's a Sequence? …”
    Libro electrónico
  10. 810
    Publicado 2024
    Tabla de Contenidos: “…Edit the project and push your changes -- Conclusion -- Chapter 15: Containerizing Applications with Docker -- How containers work as packages -- Prerequisite: Docker install -- Docker crash course -- Creating images with a Dockerfile -- Container commands -- docker run -- docker image list -- docker ps -- docker exec -- docker stop -- Docker project: Python/Flask application container -- 1. …”
    Libro electrónico
  11. 811
    Publicado 2010
    Tabla de Contenidos: “…Creating Inline Styles -- Styling Small Selections -- Setting the Font Family for the Entire Document -- Styling Links (Also Known As Getting Rid of the Blue Underline) -- Css Tools in Expression Web 4 -- The Quick Tag Tools -- The Css Properties Panel -- The Apply Styles Panel -- The Manage Styles Panel -- Using Various Css Tools to Apply and Change Styles -- Summary -- Q&A -- Workshop -- Quiz -- Answers -- Exercise -- Hour 11 Getting Boxed In, Part 2: Knee Deep in Css -- Introduction -- Css Classes-Because Not All Content Should Be Treated Equally -- Create a Class and Apply It to the Content -- Using Css Classes to Center An Image -- Using Boxes to Separate Content -- Creating a Div and Placing It Around Content -- Introducing Id-Class'S Almost Identical Twin -- Creating a Sidebar Using An Id -- Using An Id to Center the Page -- Creating Custom Styles Within Ids and Classes -- Classes Within Classes: Micromanaging the Content -- Using Classes to Control Ids -- Pseudoclasses -- Use Pseudoclasses to Style Links -- Understanding the Box Model -- Summary -- Q&A -- Workshop -- Quiz -- Answers -- Exercise -- Hour 12 Styling With Code: Fully Immersed in Css -- Introduction -- Introducing Css: The Code Version -- The Value of Separation -- Understanding Inline Styles -- Applying Classes to Tags in Code View -- Using Divs and Spans to Separate Content -- Rename Styles and Apply the Change to All Tags in a Page -- Creating Divs in Code View -- Creating External Style Sheets -- Moving Styles to and From the External Style Sheet -- Applying External Styles to a Page -- Summary -- Q&A -- Workshop -- Quiz -- Answers -- Exercise -- Hour 13 Getting Visual, Part 3: Images As Design Elements With Css -- Introduction -- Images As Backgrounds: A Crash Course -- Use An Image As a Background With Css -- The Background Attributes…”
    Libro electrónico
  12. 812
    por Simpson, Alan
    Publicado 2024
    Tabla de Contenidos: “…Using the same name twice -- Chapter 7 Sidestepping Errors -- Understanding Exceptions -- Handling Errors Gracefully -- Being Specific about Exceptions -- Keeping Your App from Crashing -- Adding an else to the Mix -- Using try . . . except . . . else . . . finally -- Raising Your Own Exceptions -- Book 3 Working with Libraries -- Chapter 1 Working with External Files -- Understanding Text and Binary Files -- Opening and Closing Files -- Reading a File's Contents -- Looping through a File -- Looping with readlines() -- Looping with readline() -- Appending versus overwriting files -- Using tell() to determine the pointer location -- Moving the pointer with seek() -- Reading and Copying a Binary File -- Conquering CSV Files -- Opening a CSV file -- Converting strings -- Converting to integers -- Converting to date -- Converting to Boolean -- Converting to floats -- Converting from CSV to Objects and Dictionaries -- Importing CSV to Python objects -- Importing CSV to Python dictionaries -- Chapter 2 Juggling JSON Data -- Organizing JSON Data -- Understanding Serialization -- Loading Data from JSON Files -- Converting an Excel date to a JSON date -- Looping through a keyed JSON file -- Converting Firebase timestamps to Python dates -- Loading unkeyed JSON from a Python string -- Loading keyed JSON data from a Python string -- Changing JSON data -- Removing data from a dictionary -- Dumping Python Data to JSON -- Chapter 3 Interacting with the Internet -- Seeing How the Web Works -- Understanding the mysterious URL -- Exposing the HTTP headers -- Opening a URL from Python -- Posting to the web with Python -- Scraping the web with Python -- Parsing part of a page -- Storing the parsed content -- Saving scraped data to a JSON file -- Saving scraped data to a CSV file -- Chapter 4 Libraries, Packages, and Modules -- Understanding the Python Standard Library…”
    Libro electrónico
  13. 813
    “…With traffic crashes being the single greatest killer of those aged 15-24 in OECD countries, this report provides an overview of the scope of the problem of young driver risk, its primary causes and concrete options to combat it. …”
    Libro electrónico
  14. 814
    Publicado 2023
    Tabla de Contenidos: “…6.1.3 Diatoms and Their Growth -- 6.1.4 Growth Data Analysis and Growth Parameter Estimation -- 6.2 Simulation Trials -- 6.2.1 Methodology for the Simulation Trials -- 6.2.2 Candidate Methods for Estimating the Specific Growth Rate -- 6.2.3 Simulation Trials Results -- 6.2.3.1 Results with Only the Noise Challenge -- 6.2.3.2 Results when Crashing Occurs -- 6.2.3.3 Results when Censoring Occurs -- 6.2.3.4 Overall Results and Ranking of the Methods -- 6.3 Empirical Example -- 6.4 Conclusions and Recommendations -- References -- Chapter 7 Integrating Metabolic Modeling and High-Throughput Data to Characterize Diatoms Metabolism -- 7.1 Introduction -- 7.2 Characterization of Diatom Genomes -- 7.2.1 Available Genomics Data -- 7.2.2 Computational Tools to Allocate Gene Functions by Subcellular Localization -- 7.3 Metabolic Modeling of Diatoms: Data and Outcomes -- 7.3.1 Using Genomic Information to Build Genome-Scale Metabolic Models -- 7.3.2 Comprehensive Diatom Omic Datasets Are Useful to Constrain Metabolic Models -- 7.3.3 Unraveling New Knowledge About Central Carbon Metabolism of Diatoms -- 7.3.4 Light-Driven Metabolism that Enables Acclimation to High Light Intensities -- 7.4 Modeling Applications to Study Bioproduction and Genome Changes in Diatoms -- 7.4.1 Predicting Diatom-Heterotroph Interactions and Horizontal Gene Transfer Using Community Metabolic Models -- 7.4.2 Optimization and Scale-Up of the Production of Valuable Metabolites -- 7.4.3 Potential for the Study of Proteome Allocation in Diatoms -- 7.5 Conclusions -- References -- Part III: Diatom Motility -- Chapter 8 Modeling the Synchronization of the Movement of Bacillaria paxillifer by a Kuramoto Model with Time Delay -- 8.1 Introduction -- 8.2 Materials and Methods -- 8.3 Time Dependence of the Relative Motion of Adjacent Diatoms…”
    Libro electrónico
  15. 815
    Publicado 2010
    Tabla de Contenidos: “…-- Logging in to Windows 7 -- Using Windows 7--the user experience -- Gestures -- The taskbar, the Start menu, and other tools -- Running your applications -- Help and support -- Exiting Windows gracefully -- Dealing with a crashed application or operating system -- 5. Managing files and searching -- What's new in Windows Explorer -- Buttons, breadcrumbs, toolbars, and more -- Navigating the file system -- Customizing file and folder views -- Managing libraries -- Searching -- Zipping and packing files -- File and folder security -- 6. …”
    Libro electrónico
  16. 816
    por Dahl, Roald, 1916-1990
    Publicado 2013
    “…This title features tales ranging from plane crashes to surviving snake bites…”
    Libro
  17. 817
    “…Every year, 1.25 million people are killed in road crashes and up to 50 million are seriously injured. …”
    Libro electrónico
  18. 818
    Publicado 2011
    Tabla de Contenidos: “…Chapter 7: Project Scheduling and Resource Levelling -- 7.1 Introduction -- 7.2 Resource Levelling -- 7.3 Resource Allocation -- 7.4 Importance of Project Scheduling -- 7.5 Other Schedules Derived from Project Schedules -- 7.5.1 Preparing Invoice Schedule -- 7.5.2 Schedule of Milestone Events -- 7.5.3 Schedule of Plant and Equipment -- 7.5.4 Schedule of Project Staff -- 7.5.5 Schedule of Labour Requirement -- 7.5.6 Schedule of Materials Requirement -- 7.5.7 Schedule of Specialized Agencies -- 7.5.8 Schedule of Direct Costs -- 7.5.9 Schedule of Overheads -- 7.5.10 Schedule of Cash Inflow -- 7.5.11 Schedule of Cash Outflow -- 7.6 Network Crashing and Cost-Time Trade-Off -- References -- Review Questions -- Chapter 8: Contractor's Estimation of Cost and Bidding Strategy -- 8.1 Contractor's Estimation and Bidding Process -- 8.1.1 Get Involved in Pre-Qualification Process -- 8.1.2 Study the Tender Document, Drawings and Prepare Tender Summary -- 8.1.3 Decisions to Take -- 8.1.4 Arrange for Site Visit and Investigation -- 8.1.5 Consultation, Queries and Meetings, and other Associated Works -- 8.1.6 Prepare Construction Schedule and other Related Schedules -- 8.1.7 Collect Information -- 8.1.8 Determining Bid Price -- 8.1.9 Analysis of Rates -- 8.1.10 Fix Mark-Up -- 8.1.11 Computing Bid Price -- 8.1.12 Submit Bid -- 8.1.13 Post-Submission Activities -- 8.2 Bidding Models -- 8.2.1 Game Theory Models -- 8.2.2 Statistical Bidding Strategy Models -- 8.2.3 Cash Flow-Based Models -- 8.3 Determination of Optimum Mark-Up Level -- 8.4 Bidding and Estimation Practices in Indian Construction Industry -- 8.4.1 Prevailing Estimation Practices -- 8.4.2 Use of Statistical/Mathematical Tools in Estimation -- 8.4.3 Breakup of Mark-Up -- 8.4.4 Labour Cost Estimation -- 8.4.5 Plant and Equipment Cost Estimation -- 8.4.6 Dealing with Uncertainties…”
    Libro electrónico
  19. 819
    Publicado 2018
    Tabla de Contenidos: “…11 Intermission: An insurance policy for free -- 11.1 Over-the-counter insurance policies -- 11.2 Separating services -- 11.3 A new payment type -- 11.4 A crashed car, a late payment, and a court case -- 11.5 Understanding what went wrong -- 11.6 Seeing the entire picture -- 11.7 A note on microservices architecture -- Summary -- Part 3 Applying the fundamentals -- 12 Guidance in legacy code -- 12.1 Determining where to apply domain primitives in legacy code -- 12.2 Ambiguous parameter lists -- 12.2.1 The direct approach -- 12.2.2 The discovery approach -- 12.2.3 The new API approach -- 12.3 Logging unchecked strings -- 12.3.1 Identifying logging of unchecked strings -- 12.3.2 Identifying implicit data leakage -- 12.4 Defensive code constructs -- 12.4.1 Code that doesn't trust itself -- 12.4.2 Contracts and domain primitives to the rescue -- 12.4.3 Overlenient use of Optional -- 12.5 DRY misapplied-not focusing on ideas, but on text -- 12.5.1 A false positive that shouldn't be DRY'd away -- 12.5.2 The problem of collecting repeated pieces of code -- 12.5.3 The good DRY -- 12.5.4 A false negative -- 12.6 Insufficient validation in domain types -- 12.7 Only testing the good enough -- 12.8 Partial domain primitives -- No double money -- 12.8.1 Implicit, contextual currency -- 12.8.2 A U.S. dollar is not a Slovenian tolar -- 12.8.3 Encompassing a conceptual whole -- Summary -- 13 Guidance on microservices -- 13.1 What's a microservice? …”
    Libro electrónico
  20. 820
    Publicado 2019
    Libro