Mostrando 3,441 - 3,460 Resultados de 293,764 Para Buscar '"C "', tiempo de consulta: 0.41s Limitar resultados
  1. 3441
    Publicado 2023
    Materias:
    Video
  2. 3442
    por Watt, Andy
    Publicado 2023
    Materias:
    Libro electrónico
  3. 3443
    Libro
  4. 3444
    Publicado 2024
    Tabla de Contenidos: “…Designing fast selection logic -- Selecting from a huge number of items -- Interoperability with .NET 8 -- Tip - creating a service in Linux -- Achieving security by design -- List of practices for achieving a safe architecture -- Authentication -- Sensitive data -- Web security -- Summary -- Questions -- Further reading -- Chapter 3: Managing Requirements -- Technical requirements -- Introducing Azure DevOps -- Managing system requirements in Azure DevOps -- Epic work items -- Feature work items -- Product Backlog items/User Story work items -- Azure DevOps repository -- Package feeds -- Test Plans -- Pipelines -- Usage -- Introducing GitHub projects -- Summary -- Questions -- Chapter 4: Best Practices in Coding C# 12 -- Technical requirements -- The simpler your code, the better a programmer you are -- Maintainability index -- Cyclomatic complexity -- Depth of inheritance -- Class coupling -- Number of lines of code -- Using a version control system -- Dealing with version control systems in teams -- Writing safe code in C# -- try-catch -- try-finally and using -- The IDisposable interface -- .NET 8 tips and tricks for coding -- Identifying well-written code -- Understanding and applying tools that can evaluate C# code -- Applying extension tools to analyze code -- Applying SonarAnalyzer -- Checking the final code after analysis -- Summary -- Questions -- Further reading -- Chapter 5: Implementing Code Reusability in C# 12 -- Technical requirements -- Understanding the principles of code reusability -- What code reuse is not -- What code reuse is -- Reusability in the development life cycle -- Using .NET 8 for code reuse -- Creating a reusable class library -- How does C# deal with code reuse? …”
    Libro electrónico
  5. 3445
    Publicado 1911
    Libro electrónico
  6. 3446
    Publicado 1929
    Libro electrónico
  7. 3447
    Seriada digital
  8. 3448
    Publicado 2024
    Materias:
    Video
  9. 3449
    Publicado 2024
    Tabla de Contenidos: “…. -- How it works... -- Calling C++ functions from JavaScript -- How to do it... -- How it works... -- Calling Javascript functions from C++ -- How to do it... -- How it works... -- Chapter 14: Performance Optimization -- Technical requirements -- Optimizing forms and C++ -- How to do it... -- How it works... -- Profiling and optimizing QML -- How to do it... -- How it works... -- Rendering and animation -- How to do it... -- How it works... -- Index -- Other Books You May Enjoy…”
    Libro electrónico
  10. 3450
    Publicado 1988
    Libro
  11. 3451
    Publicado 2024
    Libro electrónico
  12. 3452
    por Institute of Medicine (U.S.).
    Publicado 1997
    Tabla de Contenidos: “…Vitamin C Fortification of Food Aid Commodities -- Copyright -- Preface -- Contents -- Executive Summary -- BACKGROUND AND CHARGE TO THE COMMITTEE -- METHODS -- CONCLUSIONS -- RECOMMENDATIONS -- RESEARCH RECOMMENDATIONS -- 1 Introduction -- THE COMMITTEE'S TASK -- THE STUDY PROCESS -- 2 Vitamin C: Needs and Functions -- PREVALENCE OF SCURVY -- VITAMIN C REQUIREMENTS -- OTHER FUNCTIONS OF VITAMIN C -- VITAMIN C AND IRON ABSORPTION -- 3 Cost-Effectiveness Analysis -- EFFECTIVENESS -- Vitamin C Objective -- Iron Objective -- COST -- COST-EFFECTIVENESS ESTIMATE -- Vitamin C Objective -- Assumptions Regarding Proportion of Beneficiaries at Risk of Vitamin C Deficiency and Scurvy: Size of the Target Population -- Assumptions Regarding Nutrient Losses -- Appropriateness of Blended Foods as a Strategy for Reducing the Risk of Vitamin C Deficiency -- Cost of Additional Fortification -- Ration Size -- Cost-Effectiveness -- Opportunity Cost -- Iron Objective -- 4 Results of the Vitamin C Pilot Program -- SUMMARY OF THE PILOT PROGRAM -- Determination of Vitamin C Uniformity in Commodities at Manufacture -- Determination of Vitamin C Stability from Manufacture to Distribution Sites -- Vitamin C Retention During Food Preparation -- MAJOR FINDINGS OF THE PILOT PROGRAM -- 5 Critique of the Pilot Program -- UNIFORMITY OF BLENDED COMMODITIES -- CAPABILITY OF THE PRODUCTION PROCESS TO MEET PRODUCT SPECIFICATIONS -- STABILITY OF VITAMIN C DURING TRANSPORT AND STORAGE -- VITAMIN C COOKING LOSSES -- Haiti-WSB -- Tanzania-CSB -- General Comments -- 6 Conclusions and Recommendations -- CONCLUSIONS -- Assessment of Vitamin C Status and Risk of Deficiency -- Occurrence of Scurvy -- Treatment of Scurvy -- Prevention of Scurvy -- Vitamin C-Fortified Rations -- Local Fortification -- Addition of Vitamin C-Containing Foods to Ration Packages -- Ensuring Access to Market…”
    Libro electrónico
  13. 3453
    Publicado 2022
    Materias:
    Video
  14. 3454
    Publicado 2021
    Materias:
    Video
  15. 3455
    por Sharma, A.K
    Publicado 2013
    Tabla de Contenidos: “…Cover -- Contents -- Preface to the Second Edition -- Preface -- About the Author -- Chapter 1 : Overview of C -- 1.1 The History -- 1.2 Characters Used in C -- 1.3 Data Types -- 1.3.1 Integer Data Type (int) -- 1.3.2 Character Data Type (char) -- 1.3.3 The Floating point (float) Data Type -- 1.4 C Tokens -- 1.4.1 Identifiers -- 1.4.2 Keywords -- 1.4.3 Variables -- 1.4.4 Constants -- 1.5 Structure of a C Program -- 1.5.1 Our First Program -- 1.6 printf() and scanf() Functions -- 1.6.1 How to Display Data using printf() Function -- 1.6.2 How to Read Data from Keyboard using scanf() -- 1.7 Comments -- 1.8 Escape Sequence (Backslash Character Constants) -- 1.9 Operators and Expressions -- 1.9.1 Arithmetic Operators -- 1.9.2 Relational and logical Operators -- 1.9.3 Conditional Operator -- 1.9.4 Order of Evaluation of Expressions -- 1.9.5 Some Special Operators -- 1.9.6 Assignment Operator -- 1.9.7 Bitwise Shift Operators -- 1.10 Flow of Control -- 1.10.1 The Compound Statement -- 1.10.2 Selective Execution (Conditional Statements) -- 1.10.3 Repetitive Execution (Iterative Statements) -- 1.10.4 The exit() Function -- 1.10.5 Nested Loops -- 1.10.6 The Goto Statement (Unconditional Branching) -- 1.11 Input-Output Functions (I/O) -- 1.11.1 Buffered I/O -- 1.11.2 Single Character Functions -- 1.11.3 String-based Functions -- 1.12 Arrays -- 1.13 Structures -- 1.13.1 Defining a Structure in C -- 1.13.2 Referencing Structure Elements -- 1.13.3 Arrays of Structures -- 1.13.4 Initializing Structures -- 1.13.5 Assignment of Complete Structures -- 1.13.6 Nested Structures -- 1.14 User-defined Data Types -- 1.14.1 Enumerated Data Types -- 1.15 Unions -- 1.16 Functions -- 1.16.1 Function Prototypes -- 1.16.2 Calling a Function -- 1.16.3 Parameter Passing in Functions -- 1.16.4 Returning Values from Functions -- 1.16.5 Passing Structures to Functions…”
    Libro electrónico
  16. 3456
    Publicado 2020
    “…You'll also discover common pitfalls when working with TFLite as a C++ library, using TFLite with OpenCV and/or Halide on Android, as well as some techniques to do integration testing to allow your tests to work in a CI/CD environment."…”
    Vídeo online
  17. 3457
    Libro electrónico
  18. 3458
    Publicado 2022
    Visualitzar TFG
    Tesis
  19. 3459
    Publicado 2022
    “…Learn to use Github CodeSpaces and Github Actions to Build and Test C# and XUnit projects. 00:00 Intro 01:03 Create Github Project for C# 01:27 Create Github Codespace 16 core Visual Studio environment 03:15 Create Xunit project with dotnet cli 04:04 Create XUnit test 04:40 Find build and test commands for project 06:51 Setup and run GitHub Actions project 08:04 Verify Github Actions Compiles and Tests C#…”
    Video
  20. 3460
    por Victorii Roscii, Ioannis
    Publicado 1603
    Libro