Mostrando 6,101 - 6,120 Resultados de 13,910 Para Buscar '"The Class"', tiempo de consulta: 0.12s Limitar resultados
  1. 6101
    por Longshaw, John
    Publicado 2002
    Tabla de Contenidos: “…Single-Pass Processing of XML DocumentsParsing XML Documents Using the XMLReader Class; Processing XML Using an XMLTextReader Instance; Other Options for Reading and Navigation; Types and Namespaces; Exception Handling; Writing XML Documents Using the XmlWriter Class; Escaping and Copying When Writing; Validation and Entity Resolution; Validating XML Documents; Resolving Entities; Processing XML Documents in Memory; In-Memory Processing; Loading XML into the XmlDocument Class; Obtaining Information from a DOM Document; Treating a DOM Fragment as a Stream…”
    Libro electrónico
  2. 6102
    Publicado 2014
    Tabla de Contenidos: “…Chapter 6: Event and Exception HandlingIntroduction; Catching errors inside a function or subroutine; Creating and using a recovery scenario; Using a global dictionary for recovery; Chapter 7: Using Classes; Introduction; Implementing a class; Implementing a simple search class; Implementing a generic Login class; Implementing function pointers; Implementing a generic Iterator; Chapter 8: Utility and Reserved Objects; Introduction; Using global variables (Environment); Customizing mouse operations (DeviceReplay); Managing processes (SystemUtil); Measuring time (MercuryTimers)…”
    Libro electrónico
  3. 6103
    por Privat, Michael
    Publicado 2011
    Tabla de Contenidos: “…Initializing the Managed ContextAdding Core Data to an Existing Project; Adding the Core Data Framework; Creating the Data Model; Initializing the Managed Object Context; Summary; Chapter 2 Understanding Core Data; Core Data Framework Classes; The Model Definition Classes; The Data Access Classes; Key-Value Observing; The Query Classes; How the Classes Interact; SQLite Primer; Reading the Data Using Core Data; Summary; Chapter 3 Storing Data: SQLite and Other Options; Visualizing the User Interface; Using SQLite as the Persistent Store; Configuring the One-to-Many Relationship…”
    Libro electrónico
  4. 6104
    por Chetty, Damodar
    Publicado 2009
    Tabla de Contenidos: “…Basic JNDI conceptsUsing JNDI; StandardServer; Lifecycle; Shutdown; JNDI implementation; StandardService; Summary; Chapter 6: The Connector Component; Connector classification; Usage scenario; Protocol; Implementation architecture; Connector configuration; Binding attributes; Socket attributes; Thread parameters; The connector subsystem-a structural perspective; Modeling the Request and Response; Coyote and Catalina; Request classes; Response classes; HTTP classes; Stream classes; Helper classes; Socket programming; Socket options; The connector subsystem-a dynamic perspective…”
    Libro electrónico
  5. 6105
    Publicado 2014
    Tabla de Contenidos: “…Chapter 7: Gaining Proficiency with Classes and Objects…”
    Libro electrónico
  6. 6106
    por Willis, Thearon
    Publicado 2008
    Tabla de Contenidos: “…SummaryExercise; Chapter 13: Building Class Libraries; Understanding Class Libraries; Using Strong Names; Registering Assemblies; Designing Class Libraries; Using Third-Party Class Libraries; Viewing Classes with the Object Browser; Summary; Exercise; Chapter 14: Creating Windows Forms User Controls; Windows Forms Controls; Creating and Testing a User Control; Exposing Properties from User Controls; Design Time or Runtime; Creating a Command Link Control; Summary; Exercise; Chapter 15: Programming Custom Graphics; Building a Simple Paint Program; Dealing with Two Colors; Working with Images…”
    Libro electrónico
  7. 6107
    por Neuburg, Matt
    Publicado 2013
    Tabla de Contenidos: “…I Language -- 1.Just Enough C -- Compilation, Statements, and Comments -- Variable Declaration, Initialization, and Data Types -- Structs -- Pointers -- Arrays -- Operators -- Flow Control and Conditions -- Functions -- Pointer Parameters and the Address Operator -- Files -- The Standard Library -- More Preprocessor Directives -- Data Type Qualifiers -- 2.Object-Based Programming -- Objects -- Messages and Methods -- Classes and Instances -- Class Methods -- Instance Variables -- The Object-Based Philosophy -- 3.Objective-C Objects and Messages -- An Object Reference Is a Pointer -- Instance References, Initialization, and nil -- Instance References and Assignment -- Instance References and Memory Management -- Methods and Messages -- Calling a Method -- Declaring a Method -- Nesting Method Calls -- No Overloading -- Parameter Lists -- When Message Sending Goes Wrong -- Messages to nil -- Unrecognized Selectors -- Typecasting and the id Type -- Messages as Data Type -- C Functions -- CFTypeRefs -- Blocks -- 4.Objective-C Classes -- Subclass and Superclass -- Interface and Implementation -- Header File and Implementation File -- Class Methods -- The Secret Life of Classes -- 5.Objective-C Instances -- How Instances Are Created -- Ready-Made Instances -- Instantiation from Scratch -- Nib-Based Instantiation -- Polymorphism -- The Keyword self -- The Keyword super -- Instance Variables and Accessors -- Key -- Value Coding -- Properties -- How to Write an Initializer -- Referring to Instances -- pt. …”
    Libro electrónico
  8. 6108
    Publicado 2018
    Tabla de Contenidos: “…Browsing the API with resources and relationships -- Defining unique constraints -- Working with unique constraints -- Understanding pagination -- Configuring pagination classes -- Making requests that paginate results -- Working with customized pagination classes -- Making requests that use customized paginated results -- Configuring filter backend classes -- Adding filtering, searching, and ordering -- Working with different types of Django filters -- Making requests that filter results -- Composing requests that filter and order results -- Making requests that perform starts with searches -- Using the browsable API to test pagination, filtering, searching, and ordering -- Test your knowledge -- Summary -- Chapter 8: Securing the API with Authentication and Permissions -- Understanding authentication and permissions in Django, the Django REST framework, and RESTful Web Services -- Learning about the authentication classes -- Including security and permissions-related data to models -- Working with object-level permissions via customized permission classes -- Saving information about users that make requests -- Setting permission policies -- Creating the superuser for Django -- Creating a user for Django -- Making authenticated requests -- Making authenticated HTTP PATCH requests with Postman -- Browsing the secured API with the required authentication -- Working with token-based authentication -- Generating and using tokens -- Test your knowledge -- Summary -- Chapter 9: Applying Throttling Rules and Versioning Management -- Understanding the importance of throttling rules -- Learning the purpose of the different throttling classes in the Django REST framework -- Configuring throttling policies in the Django REST framework -- Running tests to check that throttling policies work as expected -- Understanding versioning classes…”
    Libro electrónico
  9. 6109
    por Ferrone, Harrison
    Publicado 2024
    Tabla de Contenidos: “…Creating a parameterized factory class -- Scaling factories with reflection and LINQ -- Adding GameObjects to the mix -- Updating the Item class -- Updating the Abstract Creator class -- Updating the concrete factory -- Updating the reflection factory -- Extending products and factories with Scriptable Objects -- Summary -- Further reading -- Chapter 5: Building a Crafting System with the Abstract Factory Pattern -- Technical requirements -- Breaking down the Abstract Factory pattern -- Diagramming the pattern -- Pros and cons -- Creating related but independent products -- Scripting product interfaces -- Adding concrete products -- Creating abstract and Concrete Factory classes -- Writing a client class using only interfaces -- Creating related and dependent products -- Writing dependent product abstract classes -- Creating concrete products -- Adding abstract and Concrete Factory classes -- Updating the client -- Optional factory variations -- Parameterized factories -- Creating a factory of factories -- Summary -- Further reading -- Chapter 6: Assembling Support Characters with the Builder Pattern -- Technical requirements -- Breaking down the Builder pattern -- Diagramming the pattern -- Pros and cons -- Creating a base ally and builder interface -- Scripting the product class -- Declaring a common builder interface -- Adding concrete builders -- Using a director class -- Integrating GameObjects -- Transitioning to a Fluent Builder structure -- Summary -- Further reading -- Chapter 7: Managing Performance and Memory with Object Pooling -- Technical requirements -- Breaking down the Object Pool pattern -- Diagramming the pattern -- Pros and cons -- Writing an Object Pool class -- Creating objects and filling the pool -- Retrieving pooled objects -- Releasing pooled objects -- Resetting pooled objects -- Object Pooling customizations…”
    Libro electrónico
  10. 6110
    por Banagl, Markus, 1971-
    Publicado 2007
    Tabla de Contenidos: “…Elementary Sheaf Theory -- Homological Algebra -- Verdier Duality -- Intersection Homology -- Characteristic Classes and Smooth Manifolds -- Invariants of Witt Spaces -- T-Structures -- Methods of Computation -- Invariants of Non-Witt Spaces -- L2 Cohomology…”
    Libro electrónico
  11. 6111
    por Peterson, Philipp L., author
    Publicado 1973
    Tabla de Contenidos: “…The Concept of Concept -- Epilogue -- Appendix: One Class of Logically Oriented Grammars for Semantic Representation -- Bibliography -- Index -- Backmatter…”
    Libro electrónico
  12. 6112
    Publicado 2015
    Tabla de Contenidos: “…Introducing Swift -- Working with collections -- Taking control -- Writing functions and closures -- Organizing with classes and structures -- Formalizing with protocols and extensions -- Working with Xcode -- Making a better app -- Going mobile with Swift -- Advancing ahead…”
    Libro electrónico
  13. 6113
    Publicado 2005
    Tabla de Contenidos: “…"First class papers" and "never-stop papers" -- Editors and publishers -- "What farmers read and liked" -- "Who read the agricultural journals?" …”
    Libro electrónico
  14. 6114
    Publicado 2014
    Tabla de Contenidos: “…Bean, Trader Joe's, Costco. and other world-class retailers…”
    Libro electrónico
  15. 6115
    Publicado 2021
    Tabla de Contenidos: “…Ryan's US Catholic case for worker justice -- Radicalizing Ryan -- Gender and economic livelihood -- Livelihood racialized -- Class, inequality, and livelihood -- Livelihood consumed -- Toward a radically sufficient economic order…”
    Libro
  16. 6116
    Publicado 2002
    Tabla de Contenidos: “…A complex meetings sample -- 9.1 Overview -- 9.2 Sample architecture -- 9.2.1 The MeetingUI class -- 9.2.2 The MeetingController class -- 9.2.3 The NWayChatUIDlg class -- 9.2.4 The MeetingLauncher class -- 9.2.5 The InviteUIDlg class -- 9.2.6 The MeetingDlg class -- 9.3 Preparing the MeetingUI class -- 9.3.1 Initialize MeetingUI class -- 9.3.2 Calling MeetingUI API -- 9.4 Four steps to create the meetings -- 9.4.1 The invitation -- 9.4.2 The place -- 9.4.3 Generating a token -- 9.4.4 Launch Sametime meeting -- 9.5 Summary -- Chapter 10. …”
    Libro electrónico
  17. 6117
    Publicado 2012
    Tabla de Contenidos: “…8.2 Working with Strings -- 8.2.1 Reading a string -- 8.2.2 Writing a string -- 8.2.3 Comparing strings -- 8.2.4 Copying one string into other -- 8.2.5 Length of a string -- 8.2.6 Concatenation of strings -- 8.3 Useful Functions for Operating on Strings -- 8.4 Simple String Programs -- 8.4.1 Capitalize first character -- 8.4.2 Reading a string containing blank -- 8.4.3 Removing return from a string -- 8.4.4 Sorting strings -- 8.4.5 Printing Strings with Field Specifications -- 8.4.6 Copying strings -- 8.5 Our Own Strings -- 8.6 Constructors for Type String -- 8.7 Interactive Constructor for Class String -- 8.8 Operator Overloading with Class String -- For Advanced Readers -- Summary -- Multiple Choice Questions and Answers -- Exercises -- Chapter 9: Inheritance I -- 9.1 Introduction -- 9.2 Derived and Base Class -- 9.3 Public Derivation -- 9.3.1 Public members of base class -- 9.3.2 Private members of base class -- 9.3.3 Protected members of base class -- 9.4 Private Derivation -- 9.5 Protected Derivation -- 9.6 Function Overriding -- 9.6.1 Overriding and overloading -- 9.7 Base and Derived Class Constructors -- 9.8 End of Chapter Programs -- 9.8.1 Working with private derivation -- 9.8.2 Program on students and their performance -- 9.8.3 Function overriding: different signature -- For Advanced Readers -- Summary -- Multiple Choice Questions and Answers -- Exercises -- Chapter 10: Inheritance II -- 10.1 Multiple Inheritance -- 10.2 Hierarchical Inheritance -- 10.3 Multilevel Inheritance -- 10.4 Hybrid Inheritance -- 10.5 A Multipath Inheritance -- 10.6 Virtual Base Class -- 10.7 Constructors for Virtual Base Classes -- 10.8 Classification of Inheritance -- 10.9 Relationships -- 10.9.1 is-a Relationship -- 10.9.2 has-a Relationship -- 10.10 Practical Class Definition -- For Advanced Readers -- Summary -- Multiple Choice Questions and Answers…”
    Libro electrónico
  18. 6118
    Publicado 2010
    Tabla de Contenidos: “…Spatial and Social Disparities -- Demographic and Deprivation Change in the UK -- England’s Changing Social Geology -- Geographical Modelling of Happiness and Well-Being -- Geographic Analysis of Cultural Consumption -- Struggling onto the Ladder, Climbing the Rungs: Employment and Class Position of Minority Ethnic Groups in Britain -- Occupational Segregation and Concentration: An Analysis by Sex, Employment Status and Ethnic Group in England and Wales -- Effects of Employment on Cardiovascular Risk -- Employment and Health Trajectories -- The Circumstances and Attitudes of Different Muslim Groups in England and Europe -- Investigating Inequalities in Educational Attainment -- The Making of Social Values: Education and Social Class -- Re-evaluating the Links Between Social Trust, Institutional Trust and Civic Association -- Sacralisation by Stealth? …”
    Libro electrónico
  19. 6119
    por Browder, Laura, 1963-
    Publicado 2000
    Tabla de Contenidos: “…The Immigrant's Answer to Horatio Alger; 6. Passing As Poor: Class Imposture in Depression America; 7. Postwar Blackface: How Middle-Class White Americans Became Authentic through Blackness…”
    Libro electrónico
  20. 6120
    por Pearsall, Edward, 1954-
    Publicado 2012
    Tabla de Contenidos: “…Scales, harmony, and referential collections -- Pitch and interval -- Sets and segmentation -- Unordered sets and their operations -- Set class analysis -- Ordered pitch sets and their operations -- Rhythm and contour -- Ordered pc-sets and rows -- Texture and sound color…”
    Enlace del recurso
    Libro electrónico