Mostrando 7,501 - 7,520 Resultados de 13,866 Para Buscar '"The Class"', tiempo de consulta: 0.10s Limitar resultados
  1. 7501
    por Freedman, Estelle B., 1947-
    Publicado 2006
    Tabla de Contenidos: “…Introduction: Identities, values, and inquiries : a personal history -- Separatism as strategy : female institution building and American feminism, 1870-1930 -- Separatism revisited : women's institutions, social reform, and the career of Miriam Van Waters -- Women's networks and women's loyalties : reflections on a tenure case -- Small group pedagogy : consciousness raising in conservative times -- No turning back : the historical resilience of feminism -- The historical construction of homosexuality in the United States -- Uncontrolled desires : the response to the sexual psychopath, 1920-1960 -- The prison lesbian : race, class, and the construction of the aggressive female homosexual, 1915-1965 -- The burning of letters continues : elusive identities and the historical construction of sexuality -- When historical interpretation meets legal advocacy : abortion, sodomy, and same-sex marriage…”
    Libro electrónico
  2. 7502
    por Haverty-Stacke, Donna T.
    Publicado 2009
    Tabla de Contenidos: “…CONTENTS; Acknowledgments; Introduction; 1 Out of America's Urban, Industrial Cauldron: The Origins of May Day as Event and Icon, 1867-1890; 2 Revolutionary Dreams and Practical Action: May Day and Labor Day, 1890-1903; 3 Working-Class Resistance and Accommodation: May Day and Labor Day, 1903-1916; 4 Defining Americanism in the Shadow of Reaction: May Day and the Cultural Politics of Urban Celebrations, 1917-1935; 5 May Day's Heyday: The Promises and Perils of the Depression Era and the Popular Front, 1929-1939; 6 World War II and Public Redefinitions of Americanism 1941-1945…”
    Libro electrónico
  3. 7503
    Publicado 2016
    Tabla de Contenidos: “…Arrays -- Chapter 6. Structures and classes -- Chapter 7. Constructors and other tools -- Chapter 8. …”
    Libro electrónico
  4. 7504
    por Eaton, Kalenda C.
    Publicado 2007
    Tabla de Contenidos: “…Book Cover; Title; Copyright; Dedication; Contents; Preface: "Lifewriting"; Acknowledgments; Chapter One "Let Me Know When You Get Through": The Afro-Politico Womanist Agenda; Chapter Two ""Look Before You Leap"": Reading Black Nationalist Rhetoric and Toni Morrison's Song of Solomon; Chapter Three "Tomorrow the People Would Come": The Crisis of the Black Middle Class in Alice Walker's Meridian; Chapter Four "Ain't No Such Animal as an Instant Guerilla": Composing Self and Community in Toni Cade Bambara's The Salt Eaters…”
    Libro electrónico
  5. 7505
    Publicado 1951
    Tabla de Contenidos: “…--Der Aufstieg der "governing class" in England, von W. Kellinghusen…”
    Libro
  6. 7506
    Publicado 2017
    Tabla de Contenidos: “…Slowing down programs using threads -- Example -- Breaking it down -- Getting the total number of active threads -- Example -- Breaking it down -- Getting the current thread -- Example -- Breaking it down -- Main thread -- Example -- Breaking it down -- Enumerating all threads -- Example -- Breaking it down -- Identifying threads -- Example -- Breakdown -- Ending a thread -- Best practice in stopping threads -- Example -- Output -- Orphan processes -- How does the operating system handle threads -- Creating processes versus threads -- Example -- Breaking it down -- Multithreading models -- One-to-one thread mapping -- Many-to-one -- Many-to-many -- Summary -- Chapter 4: Synchronization between Threads -- Synchronization between threads -- The Dining Philosophers -- Example -- Output -- Race conditions -- Process execution sequence -- The solution -- Critical sections -- Filesystem -- Life-critical systems -- Shared resources and data races -- The join method -- Breaking it down -- Putting it together -- Locks -- Example -- Breaking it down -- RLocks -- Example -- Breaking it down -- Output -- RLocks versus regular locks -- Condition -- Definition -- Example -- Our publisher -- Our subscriber -- Kicking it off -- The results -- Semaphores -- Class definition -- Example -- The TicketSeller class -- Output -- Thread race -- Bounded semaphores -- Events -- Example -- Breaking it down -- Barriers -- Example -- Breaking it down -- Output -- Summary -- Chapter 5: Communication between Threads -- Standard data structures -- Sets -- Extending the class -- Exercise - extending other primitives -- Decorator -- Class decorator -- Lists -- Queues -- FIFO queues -- Example -- Breaking it down -- Output -- LIFO queues -- Example -- Breaking it down -- Output -- PriorityQueue -- Example -- Breakdown -- Output -- Queue objects -- Full/empty queues -- Example…”
    Libro electrónico
  7. 7507
    Publicado 2017
    Tabla de Contenidos: “…Function with variable length argument -- Key-value pair as variable length argument -- Pass by reference versus pass by value -- Scope of variables -- Memory management -- Summary -- Chapter 8: Modules and Packages -- Modules -- The import statement -- Locating Python modules -- Compiled Python files -- The Python package -- Summary -- Chapter 9: File Handling and Exceptions -- Reading text from a file -- The read() method -- The readline() method -- The readlines() method -- Exercise -- Writing text to a file -- Examples -- Pickling -- Unpickling -- Exceptions -- The try statement with an except clause -- Multiple exception blocks -- The try...finally statement -- The exception argument -- Raising exceptions -- User-defined exceptions -- Summary -- Chapter 10: Collections -- Collections -- Counter -- Update function -- Usage of counters -- Operations of Python collection counter -- Deque -- Populating deque -- Deque consumption -- Deque rotation -- Ordered dictionary -- Sorting of ordered dictionary based upon keys -- Sorting of ordered dictionary based upon values -- Default dictionary -- Sample problem solved by the default dictionary - scenario one -- Sample problem solved by the default dictionary - scenario two -- Named tuple -- Adding values and creating a dictionary -- Summary -- Chapter 11: Class and Objects -- Object-oriented programming overview -- Key concepts -- Creating a class -- Instance variables -- The __init__ method -- Class variables -- Class inheritance -- Multiple inheritance -- Multilevel inheritance -- Overriding methods -- Operator overloading -- The class method -- The static method -- The private variable -- Summary -- Index…”
    Libro electrónico
  8. 7508
    Publicado 2022
    Tabla de Contenidos: “…The Mapping of Inheritance Relationships to the Database -- Primary Key -- The Use of SQL Formula-Based Properties -- Mandatory and Unique Constraints -- Summary -- Chapter 6: Mapping with Annotations -- Creating Hibernate Mappings with Annotations -- The Drawbacks of Annotations -- The Benefits of Annotations -- Choosing Which Mapping Mechanism to Use -- JPA 2 Persistence Annotations -- Entity Beans with @Entity -- Primary Keys with @Id and @GeneratedValue -- Generating Primary Key Values with @SequenceGenerator -- Generating Primary Key Values with @TableGenerator -- Compound Primary Keys with @Id, @IdClass, or @EmbeddedId -- Database Table Mapping with @Table and @SecondaryTable -- Persisting Basic Types with @Basic -- Omitting Persistence with @Transient -- Mapping Properties and Fields with @Column -- Modeling Entity Relationships -- Mapping an Embedded (Component) One-to-One Association -- Mapping a Conventional One-to-One Association -- Mapping a Many-to-One or One-to-Many Association -- Mapping a Many-to-Many Association -- Cascading Operations -- Collection Ordering -- Inheritance -- Single Table -- Joined Table -- Table per Class -- Choosing Between Inheritance Types When Modeling Inheritance -- Other JPA 2 Persistence Annotations -- Temporal Data -- Element Collections -- Large Objects -- Mapped Superclasses -- Ordering Collections with @OrderColumn -- Named Queries (HQL or JPQL) -- Named Native Queries (SQL) -- Configuring the Annotated Classes -- Hibernate-Specific Persistence Annotations -- @Immutable -- Natural IDs -- Summary -- Chapter 7: JPA Integration and Lifecycle Events -- The Java Persistence API -- The Project Object Model -- Introducing Lombok -- The JPASessionUtil Class -- Testing JPASessionUtil -- Lifecycle Events -- External Entity Listeners -- Data Validation -- Summary -- Chapter 8: Using the Session -- Sessions…”
    Libro electrónico
  9. 7509
    por Pilone, Dan
    Publicado 2005
    Tabla de Contenidos: “…UML Rules of Thumb; 2. Class Diagrams; 2.2. Attributes; 2.2.2. Attributes by Relationship; 2.2.3. …”
    Libro electrónico
  10. 7510
    Publicado 2003
    Tabla de Contenidos: “…DFSMStvs environment -- 5.1 SMS setup -- 5.1.1 Data class considerations -- 5.1.2 Storage class considerations -- 5.2 PARMLIB members -- 5.2.1 IFAPRDxx -- 5.2.2 IGDSMSxx…”
    Libro electrónico
  11. 7511
    por Lerman, Julia
    Publicado 2011
    Tabla de Contenidos: “…Welcome to Code First; Modeling with EF Before Code First; Inception of Code First; Getting Code First to Developers in Between .NET Releases; Writing the Code...First; Managing Objects with DbContext; Using the Data Layer and Domain Classes; Getting from Classes to a Database; Working with Configuration; Configuring with Data Annotations; Configuring with the Fluent API; Creating or Pointing to a Database…”
    Libro electrónico
  12. 7512
    Publicado 2016
    Tabla de Contenidos: “…GoalSetting up the project; Environment; Prerequisites; Using our new AIController class; Assigning the AIController class; Placing the pawn; Sending the instructions; Small tips on MoveToLocation; Reviewing the current progress; Adding the challenge; Traces; Reviewing the current progress; The Enemy logic; Adding the Enemy AI; Summary; Chapter 3: Adding Randomness and Probability; Introducing probability; Probabilistic distribution; Non-uniform distribution; RandomStream in Unreal Engine 4; The plan; Adding Wander; Setting up the project; Creating probability…”
    Libro electrónico
  13. 7513
    por Aaron, Lynn
    Publicado 2024
    Tabla de Contenidos: “…Copyright -- Licensing and Fair Compensation -- Impact On Trademark Infringement -- AI Trademark Infringement -- AI Literacy -- AI Literacy in Everyday Living -- Misinformation and Disinformation -- Policy Considerations in Teaching and Education -- Opportunities and Threats in Higher Education -- Equity and Access in Higher Education -- Dealing with Academic Integrity -- Integrity Problems with AI -- False Honesty of AI -- Psychological Impact of AI -- The Responsibility of Educators -- The Impact of AI in Other Contexts -- Information Security Concerns -- AI Policy Suggestions -- Additional Resources -- AI in Course Development and Assessment -- Uses of AI Technologies in Higher Education -- AI-powered personalized learning -- Intelligent tutoring systems -- Automated grading and assessment -- Virtual and augmented reality -- Intelligent content creation -- Data analytics for educational insights -- Language learning and translation -- Intelligent learning management systems -- AI Capabilities for Students -- AI Tools for Student Writing Tasks -- AI Capabilities for Faculty -- Suggestions for Faculty AI Use -- Prompt Engineering for Instructors -- Setting Expectations in Your Classes -- AI Tools to Promote Student Learning and Success: Examples -- In-Class Activities -- Writing Assignments -- AI Tools for Research Assignments -- Lab Reports -- Accessibility -- Considerations for Online Classes -- AI Tools Can Support Teaching: Examples…”
    Libro electrónico
  14. 7514
    por Phillips, Dusty
    Publicado 2010
    Tabla de Contenidos: “…Cover; Copyright; Credits; About the Author; About the Reviewers; Table of Contents; Preface; Chapter 1: Object-oriented Design; Object-oriented?; Objects and classes; Specifying attributes and behaviors; Data describes objects; Behaviors are actions; Hiding details and creating the public interface; Composition and inheritance; Inheritance; Inheritance provides abstraction; Multiple inheritance; Case study; Exercises; Summary; Chapter 2: Objects in Python; Creating Python classes; Adding attributes; Making it do something; Initializing the object; Explaining yourself; Modules and packages…”
    Libro electrónico
  15. 7515
    por Sutherland, Bruce. author
    Publicado 2014
    Tabla de Contenidos: “…Part 2: Object-Oriented ProgrammingChapter 8: Object-Oriented Programming with Classes; Object-Oriented Programming; Encapsulation; Constructors and Destructors; Method Overloading; Operator Overloading; Updating Text Adventure to Use Classes; Summary; Chapter 9: Controlling Data with Access Modifiers; The static Keyword; Creating static Local Variables; Using static class Member Variables; Using static Member Methods; Using static to Alter Global Scope; The const Keyword; Constant Variables; Constant Pointers; Constant Parameters; Constant Member Methods; Two More Keywords…”
    Libro electrónico
  16. 7516
    Publicado 2014
    Tabla de Contenidos: “…Displaying vectors using base graphicsSaving graphical output; The main graphical systems in R; Summary; Chapter 3: Working with Tables; Using the data.frame class to represent tabular data; Creating a table from separate vectors; Creating a table from a CSV file; Examining the structure of a data.frame object; Subsetting data.frame objects; Calculating new data fields; Writing a data.frame object to a CSV file; Controlling code execution; Conditioning execution with conditional statements; Repeatedly executing code sections with loops…”
    Libro electrónico
  17. 7517
    por Freeman, Adam. author
    Publicado 2015
    Tabla de Contenidos: “…Understanding the Benefits of the PatternThe Benefit of Decoupling; The Benefit of Encapsulation; The Benefit of an Evolving Public Presentation; Understanding the Pitfalls of the Pattern; Examples of the Object Template Pattern in Cocoa; Applying the Pattern to the SportsStore App; Preparing the Example Application; Creating the Product Class; Applying the Product Class; Ensuring View and Model Separation; Expanding the Summary Display; Summary; Chapter 5: The Prototype Pattern; Understanding the Problem Addressed by the Pattern; Incurring Expensive Initializations…”
    Libro electrónico
  18. 7518
    por Crawford, William, 1978-
    Publicado 2003
    Tabla de Contenidos: “…UML and Software Development LifecyclesUse Case Diagrams; Class Diagrams; Relationships Between Classes; Aggregation and composition; Describing Patterns with Class Diagrams; Objects; Packages; Interaction Diagrams; Sequence Diagrams; Collaboration Diagrams; Activity Diagrams; Deployment Diagrams; Presentation Tier Architecture; Server-Side Presentation Tier; Application Structure; The Model-View-Controller Pattern; Using MVC in J2EE; The data model; The controller servlet; JSP: The view; Building a Central Controller; The Front Controller Pattern; The Front Controller Servlet…”
    Libro electrónico
  19. 7519
    Publicado 2005
    Tabla de Contenidos: “…The return StatementThe synchronized Statement; The throw Statement; Exception types; The try/catch/finally Statement; try; catch; finally; The assert Statement; Compiling assertions; Enabling assertions; Using assertions; Methods; Defining Methods; Method Modifiers; Declaring Checked Exceptions; Variable-Length Argument Lists; Covariant Return Types; Classes and Objects Introduced; Defining a Class; Creating an Object; Using an Object; Object Literals; String literals; Type literals; The null reference; Arrays; Array Types; Array type widening conversions; C compatibility syntax…”
    Libro electrónico
  20. 7520
    por Lott, Joey
    Publicado 2006
    Tabla de Contenidos: “…Generalizing a Method to Enhance ReusabilitySolution; Discussion; Exiting a Method; Solution; Discussion; Obtaining the Result of a Method; Solution; Discussion; Handling Errors; Solution; Description; 2. Custom Classes; Creating a Custom Class; Solution; Discussion; See Also; Determining Where to Save a Class; Solution; Discussion; See Also; Creating Properties That Behave As Methods; Solution; Discussion; See Also; Creating Static Methods and Properties; Solution; Discussion; See Also; Creating Subclasses; Solution; Discussion; Implementing Subclass Versions of Superclass Methods; Solution…”
    Libro electrónico