Mostrando 1,981 - 2,000 Resultados de 3,047 Para Buscar '"The Visit"', tiempo de consulta: 0.13s Limitar resultados
  1. 1981
    Publicado 2024
    Tabla de Contenidos: “…Using lambdas with standard algorithms -- Using generic and template lambdas -- Writing a recursive lambda -- Writing function templates -- Writing a function template with a variable number of arguments -- Using fold expressions to simplify variadic function templates -- Implementing the higher-order functions map and fold -- Composing functions into a higher-order function -- Uniformly invoking anything callable -- Chapter 4: Preprocessing and Compilation -- Conditionally compiling your source code -- Using the indirection pattern for preprocessor stringification and concatenation -- Performing compile-time assertion checks with static_assert -- Conditionally compiling classes and functions with enable_if -- Selecting branches at compile time with constexpr if -- Providing metadata to the compiler with attributes -- Chapter 5: Standard Library Containers, Algorithms, and Iterators -- Using vector as a default container -- Using bitset for fixed-size sequences of bits -- Using vector&lt -- bool&gt -- for variable-size sequences of bits -- Using the bit manipulation utilities -- Finding elements in a range -- Sorting a range -- Initializing a range -- Using set operations on a range -- Using iterators to insert new elements into a container -- Writing your own random-access iterator -- Container access with non-member functions -- Selecting the right standard containers -- Chapter 6: General-Purpose Utilities -- Expressing time intervals with chrono::duration -- Working with calendars -- Converting times between time zones -- Measuring function execution time with a standard clock -- Generating hash values for custom types -- Using std::any to store any value -- Using std::optional to store optional values -- Chaining together computations that may or may not produce a value -- Using std::variant as a type-safe union -- Visiting a std::variant…”
    Libro electrónico
  2. 1982
    Publicado 2024
    Tabla de Contenidos: “…Workshops in communication -- Subject presentations -- School visits -- Social activities -- Activities in music and art -- Study information -- Final day -- Discussion of research methods -- Presentation of relevant data and analysis -- Knowledge about content in the teacher education program and profession -- Collaboration and relationships -- Incentives and motivation for becoming a teacher -- Summary and conclusions -- Notes -- References -- Part V: Video as a means of connecting coursework to teaching practice -- Chapter 15: Video as a tool to connect coursework to teaching practice: Learning to reason around specific teaching practices -- Introduction -- Innovation -- Discussion of methodological approach -- Findings: Reasoning around videos during coursework -- Descriptions and interpretations with and without evidence: Connecting theory and practice -- Interpretations with attention to contextual factors: Attention to a generalized student and the purpose of the lesson -- Rare occasions of prediction of student learning -- Decision-making in the form of suggested alternative teacher actions -- Implications for teacher education and further research -- Note -- References -- Chapter 16: Using authentic practice videos in formative assessment in teacher education -- Introduction -- The use of video in teacher education -- Formative assessment in teacher education -- Discussion of methodological approach -- Empirical context -- Methods and sample -- Analytical approach -- What did we find? …”
    Libro electrónico
  3. 1983
    por Chaturvedi, P. D.
    Publicado 2012
    Tabla de Contenidos: “…-- Scope of Business English -- Communication to Inform -- Communication to Persuade -- Basic Forms and Types of Communication -- Basic Elements of Communication Process -- The Linear Concept of Communication -- The Shannon-Weaver Model -- The Elements of Communication -- Two-way Communication -- Value and Self Development -- Meetings and Social Visits -- Group Behaviour -- High-context Cultures -- Low-context Cultures -- Time As a Cultural Factor -- Monochronic Time -- Polychronic Time -- Space As a Cultural Factor -- Media of Communication -- Communication and Electronic Media -- Communication and Social Media -- Review Your Learning -- Reflect on Your Learning -- Endnotes -- Chapter 2: Communication Barriers and Methods to Overcome Them -- The Major Difficulties in Communication -- Barriers to Communication -- Improving Communication -- Principles of Effective Communication -- The Seven Cs of Communication -- Universal Elements in Communication -- Review Your Learning -- Reflect on Your Learning -- Endnotes -- Chapter 3: Oral Communication -- What Is Oral Communication? …”
    Libro electrónico
  4. 1984
    Publicado 2024
    Tabla de Contenidos: “…Writing tests -- Authentication -- Testing JavaScript -- Blazm extension -- Summary -- Chapter 14: Deploying to Production -- Technical requirements -- Continuous delivery options -- Hosting options -- Hosting Blazor Server/InteractiveServer -- Hosting InteractiveWebAssembly -- Hosting Blazor WebAssembly Standalone -- Hosting on IIS -- Summary -- Chapter 15: Moving from, or Combining with, an Existing Site -- Technical requirements -- Introducing web components -- Exploring custom elements -- Exploring the Blazor component -- Adding Blazor to an Angular site -- Adding Blazor to a React site -- Adding Blazor to MVC/Razor Pages -- Adding web components to a Blazor site -- Migrating from Web Forms -- Summary -- Chapter 16: Going Deeper into WebAssembly -- Technical requirements -- Exploring the WebAssembly template -- .NET WebAssembly build tools -- AOT compilation -- WebAssembly Single Instruction, Multiple Data (SIMD) -- Trimming -- Lazy loading -- Progressive web apps -- Native dependencies -- Common problems -- Progress indicators -- Prerendering on the server -- Preloading and persisting the state -- Summary -- Chapter 17: Examining Source Generators -- Technical requirements -- What a source generator is -- How to get started with source generators -- Community projects -- InterfaceGenerator -- Blazorators -- C# source generators -- Roslyn SDK samples -- Microsoft Learn -- Summary -- Chapter 18: Visiting .NET MAUI -- Technical requirements -- What is .NET MAUI? …”
    Libro electrónico
  5. 1985
    Publicado 2021
    Tabla de Contenidos: “…Reducing memory overhead and increasing performance using ranges -- Moving computations at compile time -- Helping the compiler help you by using const -- Leveraging the power of safe types -- Constraining template parameters -- Writing modular C++ -- Summary -- Questions -- Further reading -- Chapter 6: Design Patterns and C++ -- Technical requirements -- Writing idiomatic C++ -- Automating scope exit actions using RAII guards -- Managing copyability and movability -- Implementing non-copyable types -- Adhering to the rules of three and five -- Adhering to the rule of zero -- Using hidden friends -- Providing exception safety using the copy-and-swap idiom -- Writing niebloids -- Policy-based design idiom -- Curiously recurring template pattern -- Knowing when to use dynamic versus static polymorphism -- Implementing static polymorphism -- Interlude - using type erasure -- Creating objects -- Using factories -- Using factory methods -- Using factory functions -- Choosing the return type of a factory -- Using factory classes -- Using builders -- Building with composites and prototypes -- Tracking state and visiting objects in C++ -- Dealing with memory efficiently -- Reducing dynamic allocations using SSO/SOO -- Saving memory by herding COWs -- Leveraging polymorphic allocators -- Using memory arenas -- Using the monotonic memory resource -- Using pool resources -- Writing your own memory resource -- Ensuring there are no unexpected allocations -- Winking out memory -- Summary -- Questions -- Further reading -- Chapter 7: Building and Packaging -- Technical requirements -- Getting the most out of compilers -- Using multiple compilers -- Reducing build times -- Using a fast compiler -- Rethinking templates -- Leveraging tools -- Finding potential code issues -- Using compiler-centric tools -- Abstracting the build process -- Introducing CMake…”
    Libro electrónico
  6. 1986
    Publicado 2017
    Tabla de Contenidos: “…-- The flag package -- Dealing with directories -- About symbolic links -- Implementing the pwd(1) command -- Developing the which(1) utility in Go -- Printing the permission bits of a file or directory -- Dealing with files in Go -- Deleting a file -- Renaming and moving files -- Developing find(1) in Go -- Traversing a directory tree -- Visiting directories only! -- The first version of find(1) -- Adding some command-line options -- Excluding filenames from the find output -- Excluding a file extension from the find output -- Using regular expressions -- Creating a copy of a directory structure -- Exercises -- Summary -- Chapter 6: File Input and Output -- About file input and output -- Byte slices -- About binary files -- Useful I/O packages in Go -- The io package -- The bufio package -- File I/O operations -- Writing to files using fmt.Fprintf() -- About io.Writer and io.Reader -- Finding out the third column of a line -- Copying files in Go -- There is more than one way to copy a file! …”
    Libro electrónico
  7. 1987
    Publicado 2018
    Tabla de Contenidos: “…-- How Should a Service Be Distributed? -- Customers Visit the Service Site -- Service Providers Go to Their Customers -- The Service Transaction Is Conducted Remotely -- Channel Preferences Vary among Customers -- Channel Integration Is Key -- Where Should a Service Facility Be Located? …”
    Libro electrónico
  8. 1988
    Publicado 2024
    Tabla de Contenidos: “…A Memory of Experiencing Milk in Kindergarten -- Abstract -- Keywords -- 1 Introduction -- 2 Experiencing Milk -- 3 Imagination and Memory of Experience -- 4 Imagination and Making-Kin -- 5 The Feast as a Thought-Thing -- 6 Re-telling through Re-visiting the Narrative -- 7 Re-telling through Babette's Feast -- References -- 11. …”
    Libro electrónico
  9. 1989
    por Institute of Medicine (U.S.).
    Publicado 1996
    Tabla de Contenidos: “…Primary Care -- Copyright -- Preface -- Acknowledgments -- Contents -- Summary -- DEFINITION OF PRIMARY CARE -- VALUE OF PRIMARY CARE -- THE NATURE OF PRIMARY CARE -- THE DELIVERY OF PRIMARY CARE -- THE PRIMARY CARE WORKFORCE -- EDUCATION AND TRAINING FOR PRIMARY CARE -- RESEARCH AND EVALUATION IN PRIMARY CARE -- A STRATEGY FOR IMPLEMENTATION -- 1 Introduction -- THE INSTITUTE OF MEDICINE STUDY -- Funding -- The Study Committee and Its Charge -- Study Activities -- Commissioned Papers -- Interim Report -- Site Visits -- Public Hearing -- Workshops -- UNDERLYING ASSUMPTIONS -- HISTORIC ROOTS AND THE CONTEMPORARY CONTEXT FOR PRIMARY CARE -- Historic Roots -- Before World War II -- The 1960s -- The 1970s -- Current Forces -- Health Care Reform -- Other Forces -- ORGANIZATION OF THE REPORT -- REFERENCES -- 2 Defining Primary Care -- EARLY DEFINITIONS -- THE FIRST IOM DEFINITION -- DISTINGUISHING PUBLIC AND PERSONAL HEALTH SERVICES -- THE 1984 REPORT ON COMMUNITY-ORIENTED PRIMARY CARE -- CHANGES IN HEALTH CARE DELIVERY TODAY -- THE NEW DEFINITION AND AN EXPLANATION OF TERMS -- Recommendation 2.1 To Adopt the Committee's Definition -- Patient -- Family -- Community -- Clinician -- Partnership -- Health Care Needs and Health Care Services -- Integrated -- Comprehensive -- Coordinated -- Interaction with Communities -- Continuous -- Comment: Who Is a Primary Care Clinician? …”
    Libro electrónico
  10. 1990
    Publicado 1996
    Tabla de Contenidos: “…RADIATION IN MEDICINE -- Copyright -- Preface -- Acknowledgments -- Contents -- Summary -- BENEFITS OF IONIZING RADIATION -- THE REGULATORY FRAMEWORK -- The Current Situation -- The NRC Medical Use Program -- The Quality Management Rule -- The NRC Agreement State Program -- ALTERNATIVE REGULATORY SYSTEMS -- Seven Alternative Structures -- Assessment of the Alternatives -- The Preferred Choice: Alternative D, Federal Guidance -- FINDINGS AND CONCLUSIONS -- RECOMMENDATIONS -- A: Recommendations to Congress -- B: Recommendations to the Nuclear Regulatory Commission -- C: Recommendations to the Conference of Radiation Control Program Directors and to the States -- CONCLUDING OBSERVATIONS -- 1 Introduction -- ERRORS AND SUCCESSES, BENEFITS AND PROBLEMS OF RADIATION MEDICINE -- THE CURRENT REGULATORY SYSTEM -- The NRC Medical Use Program -- Regulation of Other Sources -- Evolution of Federal and State Regulatory Programs -- THE INSTITUTE OF MEDICINE STUDY -- The NRC Request to the IOM and the Committee Charge -- Elements of the Study -- Meetings -- Public Hearing -- Technical Panel -- Commissioned Papers -- Site Visits -- Professional Meetings -- Organization of the Report -- Scope and Limitations of the Report -- CHAPTER SUMMARY -- REFERENCES -- 2 Clinical Applications of Ionizing Radiation -- MEASURES OF PATIENT EXPOSURE TO IONIZING RADIATION -- DIAGNOSTIC APPLICATIONS OF IONIZING RADIATION -- External Sources: Radiology -- Types of Procedures -- Utilization Rates -- Radiation Doses -- Radiation Regulation and Control -- Internal Sources: Diagnostic Nuclear Medicine -- Types of Procedures -- Utilization Rates -- Radiation Doses -- Radiation Regulation and Control -- THERAPEUTIC APPLICATIONS OF IONIZING RADIATION -- External Sources: Radiation Oncology and Teletherapy -- General Approaches -- Clinical Uses in Illustrative Medical Conditions…”
    Libro electrónico
  11. 1991
    Publicado 2022
    Libro
  12. 1992
    Publicado 1968
    Libro
  13. 1993
    Publicado 1947
    Libro
  14. 1994
    Publicado 2009
    Tabla de Contenidos: “…PRÓLOGO AL LIBRO DE KANKELEIT DAS UNBEWUSSTE ALS KEIMSTÄTTE DES SCHÖPFERISCHEN -- PRÓLOGO AL LIBRO DE SERRANO THE VISITS OF THE QUEEN OF SHEBA -- ¿HAY UN VERDADERO BILINGÜISMO? …”
    Libro electrónico
  15. 1995
    Publicado 2018
    Tabla de Contenidos: “…Creating and deleting objects -- Placement new -- The new and delete operators -- Memory alignment -- Padding -- Memory ownership -- Handling resources implicitly -- Containers -- Smart pointers -- Unique pointer -- Shared pointer -- Weak pointer -- Small size optimization -- Custom memory management -- Building an arena -- A custom memory allocator -- Summary -- Chapter 8: Metaprogramming and Compile-Time Evaluation -- Introduction to template metaprogramming -- Using integers as template parameters -- How the compiler handles a template function -- Using static_assert to trigger errors at compile time -- Type traits -- Type trait categories -- Using type traits -- Receiving the type of a variable with decltype -- Conditionally enable functions based on types with std::enable_if_t -- Introspecting class members with std::is_detected -- Usage example of is_detected and enable_if_t combined -- The constexpr keyword -- Constexpr functions in a runtime context -- Verify compile-time computation using std::integral_constant -- The if constexpr statement -- Comparison with runtime polymorphism -- Example of generic modulus function using if constexpr -- Heterogeneous containers -- Static-sized heterogenous containers -- The std::tuple container -- Accessing the members of a tuple -- Iterating std::tuple -- Unrolling the tuple -- Implementing other algorithms for tuples -- Accessing tuple elements -- Structured bindings -- The variadic template parameter pack -- An example of a function with variadic number of arguments -- How to construct a variadic parameter pack -- Dynamic-sized heterogenous containers -- Using std::any as the base for a dynamic-size heterogenous container -- The std::variant -- Visiting variants -- Heterogenous container of variants -- Accessing the values in our variant container -- Global function std::get…”
    Libro electrónico
  16. 1996
    por OECD
    Publicado 2021
    Tabla de Contenidos: “…-- Community-based mental health care demands good care co-ordination -- Emergency care visits and repeat admissions to inpatient care point to gaps in care co-ordination between inpatient and community care -- Services after discharge - suicide following discharge inpatient admissions…”
    Libro electrónico
  17. 1997
    Publicado 2017
    Tabla de Contenidos: “…. -- Defining associative arrays -- Listing of array indexes -- Visiting aliases -- How to do it... -- There's more... -- Escaping aliases -- Listing aliases -- Grabbing information about the terminal -- Getting ready -- How to do it... -- Getting and setting dates and delays -- Getting ready -- How to do it... -- How it works... -- There's more... -- Producing delays in a script -- Debugging the script -- How to do it... -- How it works... -- There's more... -- Shebang hack -- Functions and arguments -- How to do it... -- There's more... -- The recursive function -- Reading the return value (status) of a command -- Passing arguments to commands -- Sending output from one command to another -- Getting ready -- How to do it... -- There's more... -- Spawning a separate process with subshell…”
    Libro electrónico
  18. 1998
    Publicado 2023
    Tabla de Contenidos: “…During the event -- After the event -- Honoring Employees -- Launching a Product -- Define your launch strategy and objectives -- Decide on a date and location -- Develop a budget -- Put together your "dream team" -- Verify the guest list -- Formulate the creative ideas -- Make decisions about outside vendors/suppliers -- Plan the program -- Go over program details with participants -- Double-check the details -- Direct the event -- Critique the results -- Chapter 5 Bringing an Event to Life -- Deciding When to Stage Your Event -- Choosing Your Venue -- Mapping out a location -- Outdoor events -- Indoor events -- Looking at some venue options -- Hotels -- Conference centers -- Convention centers -- Resorts -- Retreat centers -- Cruise ships -- Unique environments -- Visiting venue possibilities -- Scripting the Event -- Analyzing Your Audience -- Creating the Atmosphere -- Planning the entertainment and decorations -- Choosing foods and beverages -- Creating a Memorable Theme -- Selecting a theme that fits -- Integrating a theme into your event -- Entertaining the Groups -- Choosing appropriate entertainment -- Hiring the talent -- Part 2 It's All Show Business -- Chapter 6 Get Me to the Meeting on Time -- Up, Up, and Away: Air Travel Made Easy -- Understanding ticket classes -- Booking airline tickets -- Buying tickets online -- Using a travel agent -- Organizing Ground Transportation -- Airport shuttles -- Chauffeured vehicles -- Rental cars -- Working with a Travel Agent -- Timing It Right -- Considering the time-of-week demand -- Reviewing the time-of-year demand -- Chapter 7 Food for Thought -- Considering Food and Beverage Concerns -- Fitting food into your meeting purpose -- Keeping your budget in mind -- Looking over your venue -- Understanding your audience -- Timing it right -- Exploring Eating Options -- Breakfast -- Brunch…”
    Libro electrónico
  19. 1999
    Publicado 2024
    Tabla de Contenidos: “…IT Infrastructure: Hardware and Software -- Chapter-Opening Case: Southeast Asia's Grab Leverages Information Technology to Enhance Its Services -- 5-1 Identify the components of IT infrastructure -- IT Infrastructure Components -- 5-2 Describe the major computer hardware, data storage, input, and output technologies used in business and major hardware trends -- Types of Computers -- Storage, Input, and Output Technology -- Contemporary Hardware Trends -- Spotlight On: People: The Mobile Platform Visits Disney Theme Parks -- Spotlight On: Technology: "Smart" Cities Become Smarter with Edge Computing -- 5-3 Describe the major types of computer software used in business and major software trends -- Operating System Software -- Application Software and Desktop Productivity Tools -- HTML and HTML5 -- Web Services -- Software Trends -- 5-4 Identify the principal issues in managing hardware and software technology -- Capacity Planning and Scalability…”
    Libro electrónico
  20. 2000
    Publicado 2023
    Tabla de Contenidos: “…Setting up the DigitalArtERC721Token project -- Creating the basic token information -- Defining and implementing the ERC-721 standard -- Defining the art and art transaction struct -- Creating a non-fungible digital art token -- Implementing the buyArt() function -- Implementing the resellArt() function -- Implementing the findArt() function -- Implementing the findMyArts() function -- Implementing the findAllPendingArt() function -- Getting all art transactions through getArtAllTxn() -- Creating an ERC-1155 token - ERC1155NFTToken -- Uploading NFT images -- Writing the ERC-1155 NFT token contract -- ERC-1155 -- Summary -- Part 3: Ethereum Development Fundamentals -- Chapter 9: Smart Contract Development and Test Fundamentals -- Technical requirements -- Understanding Remix development fundamentals -- Working with the Solidity Compiler -- Testing -- Deploying and running transactions -- Debugging -- Understanding development using Truffle and unit testing -- The Truffle console and development features -- Running a Truffle migration -- Truffle unit testing -- Truffle Box -- Understanding Hardhat development and unit testing -- Hardhat Runner -- Hardhat Network -- Project structure -- Installation and environment setup​ -- Hardhat project setup -- Creating and compiling the ERC1155 contract -- Testing the contract -- Deploying the contract -- Security testing -- Static and dynamic analysis -- Working with a linter -- Summary -- Chapter 10: Writing a Frontend to Build the NFT Marketplace DApp -- Technical requirements -- Understanding DApps -- Creating your first NFT -- Set up a wallet -- Obtain Ether (ETH) -- Visit OpenSea -- Create NFT item -- Working with the Web3 JavaScript API -- Setting up a DApp development environment -- Installing Ganache desktop -- Creating a development workspace -- Setting up the project for our DApp…”
    Libro electrónico