Mostrando 1 - 17 Resultados de 17 Para Buscar 'The Dead Pool', tiempo de consulta: 0.09s Limitar resultados
  1. 1
    por Poole, Adrian
    Publicado 2005
    Libro
  2. 2
    por Poole, Adrian
    Publicado 2005
    Enlace del recurso
    Libro electrónico
  3. 3
    Publicado 2021
    Materias:
    Libro electrónico
  4. 4
    por Hébert, Fred, 1988-
    Publicado 2013
    Tabla de Contenidos: “…Building an Application -- A Pool of Processes -- The Onion Layer Theory -- A Pool's Tree -- Implementing the Supervisors -- Working on the Workers -- Writing a Worker -- Run Pool Run -- Cleaning the Pool -- 19. …”
    Libro electrónico
  5. 5
    por Shore, Howard
    Publicado 2006
    Tabla de Contenidos: “…Glamdring ; Elven rope ; Lost in Emyn Muil ; My precious ; Uglúk's warriors ; three hunters ; banishment of Éomer ; Night camp ; plains of Rohan ; Fangorn ; dead marshes ; Wraiths on wings ; Gandalf the White ; dreams of trees ; heir of Númenor ; Ent-draught -- Edoras ; Court of Meduseld ; Theoden King : featuring "The funeral of Théodred" ; king's decision ; Exodus from Edoras ; forests of Ithilien ; One of the Dunedain : featuring "Evenstar" ; wolves of Isengard ; Refuge at Helm's Deep ; voice of Saruman ; Arwen's fate : featuring "The grace of the Valar" ; story foretold ; Sons of the steward ; Rock and pool ; Faramir's good council -- Aragorn's return ; War is upon us ; Where is the horse and the rider? …”
    CDROM
  6. 6
    Publicado 2015
    Tabla de Contenidos: “…Machine generated contents note: -- Foreword; Pieter SpierenburgIntroduction: A Global History of Execution and the Criminal Corpse; Richard Ward1. Punishing the Dead: Execution and the Executed Body in Eighteenth-Century Ireland; James Kelly2. …”
    Capítulo de libro electrónico
  7. 7
    Publicado 2015
    Tabla de Contenidos: “…Foreword; Pieter Spierenburg Introduction: A Global History of Execution and the Criminal Corpse; Richard Ward: This chapter is available open access under a CC BY license via palgraveconnect.com. 1. Punishing the Dead: Execution and the Executed Body in Eighteenth-Century Ireland; James Kelly 2. …”
    Revista digital
  8. 8
    por Barnett, G. William
    Publicado 2008
    Tabla de Contenidos: “…; 20 IF DEATH AND TAXES ARE CERTAIN, LET'S BE DEAD CERTAIN ABOUT TAXES; 21 HOLY COW, YOU'RE A MULTI-MILLIONAIRE!…”
    Libro electrónico
  9. 9
    por Cranton, Scott
    Publicado 2013
    Tabla de Contenidos: “…Increasing message consumption through multiple endpoint consumersSpreading the load within a route using a set of threads; Routing a request asynchronously; Using custom thread pools; Using thread pool profiles; Working with asynchronous APIs; Chapter 7:Error Handling and Compensation; Introduction; Logging errors; Dead Letter Channel - handling errors later; Retrying an operation; Conditional retry; Customizing each redelivery attempt; Catching exceptions; Marking exceptions as handled; Fine-grained error handling using doTry...doCatch; Defining completion actions…”
    Libro electrónico
  10. 10
    Publicado 2002
    Tabla de Contenidos: “…Is Your Database Connection Pool too Small?; Is Your Database Connection Pool Leaking?…”
    Libro electrónico
  11. 11
    Publicado 2018
    Tabla de Contenidos: “…Cover -- Title Page -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Identifying Performance Bottlenecks -- Reasons for performance issues -- Memory management -- Garbage collection -- Working principles of the garbage collector -- Impacts of garbage collection -- Heap fragmentation -- Finalization -- Resource leaks -- Memory leaks -- String pool -- Memory model -- The problem of concurrency and parallelism -- Java Memory Model (JMM) -- Synchronization -- Slow rendering -- Device refresh rate -- Frame rate -- Summary -- Chapter 2: Identifying Indicators of Performance Issues -- Benchmarking -- Microbenchmarks -- Java Microbenchmark Harness (JMH) -- Benchmark modes -- Benchmark time units -- Benchmark state -- State scope -- Fixture methods -- Levels of fixture methods -- Writing good benchmarks -- The pitfalls of loops -- Dead Code Elimination -- Using black holes -- Constant folding -- Kotlin benchmarks -- IDEA JMH plugin -- General performance metrics -- Types of performance testing -- Performance testing process -- Overview of performance testing tools -- JMeter -- Fabric -- Summary -- Chapter 3: Learning How to Use Profiling Tools -- Memory profiling -- Memory Viewer -- HProf -- Eclipse Memory Analyzer Tool -- Histogram -- Shallow and Retained Heap -- Dominator Tree -- Top Consumers -- Analyzing class loaders -- Android Studio Memory Profiler -- Memory categories -- Recording memory allocation -- Threads profiling -- Threads viewer -- Frames pane -- The Threads pane -- Thread profiling in the MAT -- Threads Overview -- Thread Details -- CPU Profiler in Android Studio -- Call Chart and Flame Chart tabs -- Top Down and Bottom Up tabs -- Summary -- Chapter 4: Functional Approach -- Functional programming -- Declarative versus imperative -- Pure functions -- First-class functions…”
    Libro electrónico
  12. 12
    Publicado 2013
    Libro electrónico
  13. 13
    Publicado 2023
    Tabla de Contenidos: “…Delay execution until the previous task is completed with the balking pattern -- Motivation -- Sample code -- Conclusion -- Providing a unique object instance with a double-checked locking pattern -- Motivation -- Sample code -- Conclusion -- Using purposeful thread blocking via a read-write lock pattern -- Motivation -- Sample code -- Conclusion -- Decoupling the execution logic with a producer-consumer pattern -- Motivation -- Sample code -- Conclusion -- Executing isolated tasks with the scheduler pattern -- Motivation -- Sample code -- Conclusion -- Effective thread utilization using a thread-pool pattern -- Motivation -- Sample code -- Conclusion -- Summary -- Questions -- Further reading -- Answers -- Chapter 7: Understanding Common Anti-Patterns -- Technical requirements -- What anti-patterns are and how to identify them -- Theoretical principles challenges -- Collecting technical debt as a bottleneck -- Inappropriately squeezing the capabilities of the Java platform -- Selecting the right tool -- Conclusion of the code smell anti-pattern -- Examining typical software anti-patterns -- Spaghetti code -- Cut and paste programming -- Blob -- Lava flow -- Functional decomposition -- Boat anchor -- Conclusion -- Understanding software architecture anti-patterns -- Golden hammer -- Continuous obsolescence -- Input kludge -- Working in a minefield -- Ambiguous viewpoint -- Poltergeists -- Dead end -- Conclusion -- Summary -- Further reading -- Assessments -- Index -- Other Books You May Enjoy…”
    Libro electrónico
  14. 14
    Publicado 2023
    Tabla de Contenidos: “…Contrived complexity -- Dead code -- Excessive data return -- Feature envy -- Identifier size -- Inappropriate intimacy -- Long lines (God lines) -- Lazy methods -- Long methods (God methods) -- Long parameter lists (too many parameters) -- Message chains -- The middleman method -- Oddball solutions -- Speculative generality -- Summary -- Questions -- Further reading -- Chapter 12: Functional Programming -- Technical requirements -- Imperative versus functional programming -- Imperative programming -- Key differences -- Overview of functional programming in C# -- First-class functions and Lambda expressions -- Lambda expressions in C# -- Higher-order functions -- Immutability and pure functions -- Functional composition -- Using Lambda expressions -- Using LINQ and extension methods -- Using higher-order functions -- Option types and the Maybe monad -- Usage of option types in C# -- The Maybe monad in C# -- Functional error handling -- Option types -- The Maybe monad -- The Either monad -- Result objects -- Functional data transformation and pipelines -- Lazy evaluation -- Pattern matching -- Currying and partial application -- Currying -- Partial application -- Key differences -- Concurrency with functional programming -- Recursion -- Summary -- Questions -- Further reading -- Chapter 13: Cross-Platform Application Development with MAUI -- Technical requirements -- Project overview -- Windows version -- Android version -- Creating the project -- Understanding XAML structure -- The MVVM pattern -- Adding CommunityToolkit.Mvvm -- The models -- The ViewModels -- The views -- Configuring our to-do application -- Summary -- Questions -- Further reading -- Chapter 14: Microservices -- What are microservices? …”
    Libro electrónico
  15. 15
    Publicado 2024
    Tabla de Contenidos:
    Libro electrónico
  16. 16
    Publicado 2022
    Libro electrónico
  17. 17
    Publicado 2018
    Tabla de Contenidos: “…Other connection options -- Retry policy -- Default keyspace -- Port -- SSL -- Connection pooling options -- Starting simple - Hello World! …”
    Libro electrónico