Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- History 229
- Engineering & Applied Sciences 205
- Computer programs 152
- Computer Science 150
- Operating systems (Computers) 140
- Development 136
- Application software 132
- Database management 123
- Data processing 108
- Management 99
- Education 89
- History and criticism 88
- Economic history 87
- Economic conditions 84
- Business 83
- Histoire 82
- Zeitschrift 75
- Microsoft Windows (Computer file) 72
- Photography 71
- Computer graphics 66
- Law 66
- Computer programming 65
- Computer software 63
- Design 63
- Web sites 63
- Linux 62
- Study and teaching 62
- Python (Computer program language) 61
- Digital techniques 60
- Programming 60
-
1121Publicado 2005Tabla de Contenidos: “…12.5 Friends -- 12.6 static Class Members -- Chapter Summary -- Defined Terms -- Chapter 13 Copy Control -- 13.1 The Copy Constructor -- 13.2 The Assignment Operator -- 13.3 The Destructor -- 13.4 A Message-Handling Example -- 13.5 Managing Pointer Members -- Chapter Summary -- Defined Terms -- Chapter 14 Overloaded Operations and Conversions -- 14.1 Defining an Overloaded Operator -- 14.2 Input and Output Operators -- 14.3 Arithmetic and Relational Operators -- 14.4 Assignment Operators -- 14.5 Subscript Operator -- 14.6 Member Access Operators -- 14.7 Increment and Decrement Operators -- 14.8 Call Operator and Function Objects -- 14.9 Conversions and Class Types -- Chapter Summary -- Defined Terms -- Part IV: Object-Oriented and Generic Programming -- Chapter 15 Object-Oriented Programming -- 15.1 OOP: An Overview -- 15.2 Defining Base and Derived Classes -- 15.3 Conversions and Inheritance -- 15.4 Constructors and Copy Control -- 15.5 Class Scope under Inheritance -- 15.6 Pure Virtual Functions -- 15.7 Containers and Inheritance -- 15.8 Handle Classes and Inheritance -- 15.9 Text Queries Revisited -- Chapter Summary -- Defined Terms -- Chapter 16 Templates and Generic Programming -- 16.1 Template Definitions -- 16.2 Instantiation -- 16.3 Template Compilation Models -- 16.4 Class Template Members -- 16.5 A Generic Handle Class -- 16.6 Template Specializations -- 16.7 Overloading and Function Templates -- Chapter Summary -- Defined Terms -- Part V: Advanced Topics -- Chapter 17 Tools for Large Programs -- 17.1 Exception Handling -- 17.2 Namespaces -- 17.3 Multiple and Virtual Inheritance -- Chapter Summary -- Defined Terms -- Chapter 18 Specialized Tools and Techniques -- 18.1 Optimizing Memory Allocation -- 18.2 Run-Time Type Identification -- 18.3 Pointer to Class Member -- 18.4 Nested Classes -- 18.5 Union: A Space-Saving Class…”
Libro electrónico -
1122Publicado 2010Tabla de Contenidos: “…-- Developing Great Web Copy -- Make Your Content Usable -- Strive for Immediate Positive Reviews -- 6 Electronic Word of Mouth -- Positive External Reviews -- Coordinated Marketing Effort -- Generating Demand -- Reaching Interested Buyers -- Choosing the Right Delivery Methods -- Three Key Areas -- Direct Marketing for Your App -- Direct Mail -- Email -- Promoting Your App -- Your App in Traditional Media (Newspapers, Radio, TV) -- Advertising Your Apps -- Paid Search…”
Libro electrónico -
1123Publicado 2004Tabla de Contenidos: “…Linux client installation -- 7.1 Scenario -- 7.2 Creating a Rapid Deployment Server -- 7.2.1 Partitioning the disk on the RDS -- 7.2.2 Creating an advanced DOS boot diskette -- 7.2.3 Creating a CID-enabled Linux boot diskette with response file -- 7.2.4 Installing the server -- 7.2.5 Creating the CID directory structure -- 7.2.6 Copying the RDS tools to the directory structure -- 7.2.7 Copying preconfigured scenarios to the RDS server -- 7.2.8 Copying the installable images -- 7.2.9 Configuring the services on the server -- 7.2.10 Creating user IDs and groups -- 7.3 Installing a target workstation using a bootable CD -- 7.3.1 Overview of the installation process -- 7.3.2 Creating bootable CID enabled CD-ROM -- 7.3.3 Installing a target -- 7.4 Installing targets using RDS and PXE -- 7.4.1 Introduction to the PXE protocol and its function -- 7.4.2 Additional server configuration steps for PXE targets -- 7.5 REXX procedures used by RDS -- 7.5.1 CIDAGENT -- 7.6 Summary -- Appendix A. …”
Libro electrónico -
1124Publicado 2012Tabla de Contenidos: “…5.9 Inline Functions (Within a Class) -- 5.10 Static Data Members and Methods -- 5.10.1 Static data member -- 5.10.2 Static methods -- 5.11 Friend Functions -- 5.12 Friend Classes -- 5.13 Access Specifier Protected -- 5.14 Ideal Class Definition -- 5.15 End of Chapter Programs -- 5.15.1 Timer application -- 5.15.2 Complex numbers -- 5.15.3 Parameter passing by reference (C style) -- For Advanced Readers -- Summary -- Multiple Choice Questions and Answers -- Exercises -- Chapter 6: Object Initialization and Cleanup -- 6.1 Introduction -- 6.2 Constructors -- 6.3 Parameterized Constructor -- 6.4 Pointer "this" -- 6.5 Constructor Overloading -- 6.6 Default Constructor -- 6.7 Constructors with Default Arguments -- 6.8 Copy Constructor -- 6.9 Copy Initialization -- 6.10 Array of Objects -- 6.10.1 Array of objects - without pointers -- 6.10.2 Array of objects - With pointer -- 6.11 Destructors -- 6.12 End of Chapter Programs -- 6.12.1 Initializer list -- For Advanced Readers -- Summary -- Multiple Choice Questions and Answers -- Exercises -- Chapter 7: Operator Overloading -- 7.1 Introduction -- 7.2 Unary Operator Overloading -- 7.3 Binary Operator Overloading -- 7.3.1 Case 1: object + object -- 7.3.2 Case 2: object + basic data type -- 7.3.3 Case 3: basic data type + object -- 7.4 Friend Functions in Operator Overloading -- 7.4.1 Binary operator overloading [case 3] -- 7.4.2 Binary operator overloading [case 1] -- 7.5 Overloading of Increment Operator -- 7.6 Conversion Function -- 7.7 End of Chapter Programs -- 7.7.1 Overloading of assignment operator [case 1] -- 7.7.2 Overloading << operator -- 7.7.3 Expression with unary as well as binary overloaded operators -- 7.7.4 Class polar -- 7.7.5 Rational numbers -- For Advanced Readers -- Summary -- Multiple Choice Questions and Answers -- Exercises -- Chapter 8: Strings -- 8.1 Introduction…”
Libro electrónico -
1125Publicado 2018Tabla de Contenidos: “…Creating reusable polymorphic lambdas -- Const propagation for pointers -- Move semantics explained -- Copy-construction, swap, and move -- Copy-constructing an object -- Swapping two objects -- Move-constructing an object -- Resource acquisition and the rule of three -- Implementing the rule of three -- Constructor -- Limitations of the rule of three -- Avoiding copies without move semantics -- Introducing move semantics -- Named variables and r-values -- Accept arguments by move when applicable -- Default move semantics and the rule of zero -- Rule of zero in a real code base -- A note on empty destructors -- A common pitfall - moving non-resources -- Applying the & -- & -- modifier to class member functions -- Representing optional values with std::optional -- Optional return values -- Optional member variables -- Sorting and comparing std::optional -- Representing dynamic values with std::any -- Performance of std::any -- Summary -- Chapter 3: Measuring Performance -- Asymptotic complexity and big O notation -- Growth rates -- Amortized time complexity -- What to measure? …”
Libro electrónico -
1126Publicado 2019Tabla de Contenidos: “…Sketching with Numeric Input -- Working with Sketch Entities -- Moving, Rotating, Copying, and Scaling Entities -- Modifying a Sketch -- Copying and Pasting Sketch Entities -- Dragging Entities -- Creating a Derived Sketch -- Using Sketch Pictures -- Using Three Views -- Compensating for Perspective -- Estimating Sharp Edges -- Using Auto Trace -- Using Stick Fonts -- Using Sketch Text -- Using Colors and Line Styles with Sketches -- Working in Color Display Mode -- Assigning Line Color -- Using the Edit Sketch or Curve Color Tool -- Assigning Line Thickness and Line Style -- Using Other Sketch Tools -- Working with RapidSketch -- Adding Sensors -- Using Metadata for Sketches -- Creating Construction Geometry -- Sketching in 3D -- Navigating in Space -- Exploring Sketch Relations in 3D Sketches -- Using Planes in Space -- Using Planar Path Segments -- Defining Dimensions -- Using 3D Sketch Summary -- Tutorial: Editing and Copying -- Tutorial: Controlling Pictures, Text, Colors, and Styles -- Tutorial: Using Metadata -- Tutorial: Sketching Calculator -- The Bottom Line -- Chapter 7 Modeling with Primary Features -- Identifying When to Use Which Tool -- Using the Extrude Feature -- Understanding Instant 3D -- Working with the Revolve Feature -- Introducing Loft, Boundary, and Sweep -- Controlling Sweep Features -- Understanding Fillet Types -- Creating a Constant-Size Fillet -- Creating Variable-Radius Fillets -- Using Face Fillets -- Applying a Full Round Fillet -- Building a Setback Fillet -- Using Chamfers -- Creating Asymmetrical Chamfers -- Switching Between Fillet and Chamfer Features -- Tutorial: Bracket Casting -- The Bottom Line -- Chapter 8 Selecting Secondary Features -- Creating Curve Features -- Manipulating Curves -- Working with Helix Curve Features -- Creating Projected Curves -- Using the Curve Through XYZ Points Feature…”
Libro electrónico -
1127por Wesselius, JaapTabla de Contenidos: “…Relocate the SMTP Queue Database (Optional) -- Relocate IIS Log Files (Optional) -- Enter a Product Key -- Add Additional Mailbox Databases -- High Availability -- Mailbox Service High Availability -- Cluster Nodes and the File Share Witness -- Cluster Administrative Access Point -- Replication -- File Mode Replication -- Block Mode Replication -- Seeding -- Replication (Copy) Queue and Replay Queue -- Lagged Copies -- Active Manager -- DAG Across (Active Directory) Sites -- DAG Networks -- DAG Creation -- Creating the Database Availability Group Object -- Adding Exchange Servers -- Adding the Mailbox Database Copies -- Configuring the DAG Networks -- Exchange Transport -- Transport Pipeline -- Routing Destinations -- Delivery Groups -- Queues -- Shadow Redundancy -- Managing Queues -- Safety Net -- Send and Receive Connectors -- Send Connectors -- Receive Connectors -- SMTP Relay -- Create a New Receive Connector -- Modify Permissions on the Receive Connector -- Message Tracking -- Edge Transport Server -- Installing and Configuring Edge Transport Servers -- Prepare the Edge Transport Server -- Unattended Installation of the Edge Transport Server -- Create an Edge Subscription -- Relocate the Transport Database -- Test the Edge Transport Server -- Export and Import Edge Configuration -- Protocol Logging -- SSL Certificates -- Load-Balancing the Edge Transport Servers -- Upgrading from Exchange 2013 or Exchange 2016 -- Moving to Exchange 2019 -- Installing Exchange 2019 -- Namespaces with Exchange -- Virtual Directories -- SSL Certificates -- SMTP Mail in a Coexistence Scenario -- Using an Edge Transport Server -- Continuing with the Previous Edge Transport Server -- Introducing a New Exchange 2019 Edge Transport Server -- Moving Resources to Exchange 2019 -- Moving Mailboxes to Exchange 2019 -- Address Lists in Exchange 2019.…”
Publicado 2023
Libro electrónico -
1128Publicado 2014Tabla de Contenidos: “…-- What is the difference between in-place and implicit-copy operations? -- Why can't some arrays be reshaped without a copy? …”
Libro electrónico -
1129Publicado 2020Tabla de Contenidos: “…Finding Files with the Files App -- Navigating Files -- Creating and navigating folders -- Moving files and folders -- Searching for files -- Deleting files and folders -- Adding and Using External Storage -- Working with Google Drive -- Creating a Google Drive account -- Using Google Drive -- Uploading files to Google Drive -- Uploading files to Google Drive from a Mac, PC, or Linux system -- Using Google Drive with Your Smartphone or Tablet -- Collaborating with Drive -- Using Google Drive offline -- Part 2 Harnessing Business Power with the Chromebook -- Chapter 8 Writing with Word Processing -- Navigating Google Docs -- Surveying the Docs workspace -- Changing your view -- Working with Text -- Moving around your document -- Copying and pasting text -- Moving text by cutting and pasting -- Formatting Text -- Changing fonts -- Styling fonts -- Aligning your text -- Clearing formatting -- Saving Documents -- Naming your document -- Exporting documents -- Collaborating in Docs -- Tracking Document Revisions -- Using Docs Offline -- Chapter 9 Summarizing Sheets -- Navigating Google Sheets -- Surveying the Sheets menu area -- Working with the spreadsheet area -- Customizing your view -- Working with Data -- Moving around in a spreadsheet -- Copying and pasting data -- Moving data with Cut and Paste -- Using Autofill to save time -- Formatting Data -- Working with fonts -- Styling your data -- Changing alignment -- Wrapping text in a cell -- Clearing formatting -- Customizing Your Spreadsheet -- Adding and deleting rows and columns -- Resizing columns and rows -- Hiding columns and rows -- Merging cells -- Formatting numbers -- Grouping cells with colors and borders -- Making Calculations with Formulas -- Adding basic mathematical formulas -- Adding formulas to calculate values in cells -- Working with spreadsheet functions -- Saving Documents…”
Libro electrónico -
1130
-
1131Publicado 2023Tabla de Contenidos: “…Intro -- Table of Contents -- About the Author -- About the Technical Reviewer -- Acknowledgments -- Introduction -- Chapter 1: Customizing Financial Accounting Enterprise Structure in SAP S/4HANA -- Let's look at the steps involved in this Customizing -- Define Company -- Define a Company Code -- Assign Company Code to Company -- Fiscal Year Variant -- Year-Specific or Year dependent -- Maintain Fiscal Year Variant -- Assign Fiscal Year Variant to Company Code -- Defining Posting Periods -- Define Variants for Open Posting Periods -- Assign Variants to Company Code -- Open and Close Periods -- Summary -- Chapter 2: Defining Chart of Accounts -- Master Data -- Defining Chart of Accounts -- Creating Chart of Accounts -- Assign Company Code to Chart of Accounts -- Define Account Group -- Define Retained Earnings Account -- Summary -- Chapter 3: Document Control -- Document Control -- Document type -- Posting Key -- Definition of Number Range Intervals -- Defining Document Number Ranges using Copy Subobject Function -- How to Delete Number Range Intervals -- Creating your number range intervals from scratch -- Copy Another Company Code to your Company Code -- Copying Number Ranges to Fiscal Year -- Field Status Variants -- Define Field Status Variants -- Assign Company Code to Field Status Variants -- Summary -- Chapter 4: Defining Tolerance Groups for G/L Accounts and Employees -- Tolerance Groups -- Define Tolerance Groups for G/L Accounts -- Default Tolerance Group: -- Define Tolerance Groups for Employees -- Define Default Tolerance Groups for Employees -- Define Tolerance Groups for Employees -- Assign Users to Tolerance Groups -- Summary -- Chapter 5: Creating a General Ledger (G/L) -- General Ledger -- GL Reconciliation -- What is a Master Record? …”
Libro electrónico -
1132Publicado 2024Tabla de Contenidos: “…Worker Nodes -- Creating a Highly Available Kubernetes Cluster with Kubespray and Ansible -- Available Options to Deploy Kubernetes -- Prerequisites and Initial Setup -- Creating The Inventory -- Creating the Cluster -- How Kubespray Works -- Step 1: Pre-Configuration Checks and Setup -- Step 2: Setting Up Container Runtime -- Step 3: Network Plugin Installation -- Step 4: Kubernetes Components Installation -- Step 5: Initialization of the First Control Plane Node -- Step 6: Setting Up etcd Cluster -- Step 7: Joining Additional Control Plane Nodes -- Step 8: Joining Worker Nodes -- Step 9: Cluster Configuration With Addons -- Step 10: Cluster Verification And Health Checks -- Step 11: Security Configuration -- Step 12: Applying Custom Configurations -- Step 13: Cluster Ready For Deployment -- Start Using The Cluster -- Deploying to Kubernetes with Ansible -- Deploying to Kubernetes with Ansible and the K8s Module -- Using Remote Manifests -- Inline Manifests -- Validating Kubernetes Definitions -- Managing Multiple Clusters -- Patching Resources -- Restarting Deployments -- Deploying to Kubernetes with Ansible and Helm -- Templating Kubernetes Resources With Ansible -- Troubleshooting Kubernetes with Ansible -- Creating Generic Debug Tasks to View Kubernetes Resources -- Viewing Kubernetes Pod Logs with Ansible -- Ansible + Kubernetes = A Powerful Combination -- Ansible Cheat Sheet -- Installing Ansible -- On Linux -- On macOS -- On Windows -- Configuring Ansible -- Inventory -- Setting Up the Inventory File (INI) -- Setting Up the Inventory File (YAML) -- Ansible Host Variables -- Testing Your Setup -- Playbook Structure -- Playbook Keywords -- Common Modules -- Running a Command -- Running a Shell Command -- Running a Raw Command -- Copying a File -- Installing a Package -- Restarting a Service -- Copying a File with Permissions…”
Libro electrónico -
1133por Ferrone, HarrisonTabla de Contenidos: “…-- When to use Design Patterns -- Common pitfalls -- About the example projects -- Client code -- Old vs new input system -- Art assets -- Summary -- Further reading -- Chapter 2: Managing Access with the Singleton Pattern -- Technical requirements -- Breaking down the pattern -- UML diagramming -- Pros and cons -- Updating a MonoBehavior into a persistent Singleton -- Persisting the Singleton between scenes -- Testing for duplicate managers -- Creating a generic Singleton -- Adding thread safety to the generic Singleton -- Thread locking during lazy instantiation -- Creating Singletons as ScriptableObjects -- Summary -- Further reading -- Chapter 3: Spawning Enemies with the Prototype Pattern -- Technical requirements -- Breaking down the Prototype pattern -- Diagraming the pattern -- Pros and cons -- Implementing shallow and deep object copying -- Adding a prototype interface -- Making shallow object copies -- Making deep object copies -- Adding a prototype factory -- Cloning prefabs -- Creating a generic prototype Component -- Summary -- Further reading -- Chapter 4: Creating Items with the Factory Method Pattern -- Technical requirements -- Breaking down the Factory Method pattern -- Diagramming the pattern -- Pros and cons -- Declaring our inventory products -- Adding a product interface -- Creating concrete products -- Working with different factory class variations -- Adding an abstract factory class -- Building a concrete factory -- Creating a concrete factory class -- Building a parameterized factory…”
Publicado 2024
Libro electrónico -
1134por Carvalho, Pedro de MouraTabla de Contenidos: “…Disputes and compromises: The role of Mary; 2.5. Copying the Mirʼāt al-quds; CHAPTER THREE; VISUALIZING THE MIRʼĀT AL-QUDS:CLEVELAND MUSEUM OF ART, ACC. …”
Publicado 2012
Click para texto completo desde fuera UPSA
Click para texto completo desde UPSA
Libro electrónico -
1135Publicado 2003Tabla de Contenidos: “…TAḪ.ŠUMSAR Festival : The text-copy VS NF 12.1 / Philo H.J. Houwink ten Cate -- Why did the Hittites have a thousand deities? …”
Click para texto completo desde fuera UPSA
Click para texto completo desde UPSA
Libro electrónico -
1136por Wildi, ErnstTabla de Contenidos: “…Shutter Delay, Exposure Time, and Capture SequenceOperating Controls on Digital Backs; Making the Settings on the Camera's Powergrip; ISO and White Balance Settings on H3DII Cameras; Evaluating the Tonal Range and Exposure; Viewing Images; Copying Images; Deleting Images; Cleaning the Sensor Unit; The Phocus and Flexcolor Software Programs; Working with Phocus; 6 The 503 and Other V System Cameras and Components; Digital Imaging with V System Cameras; Hasselblad 500 Camera Models; Hasselblad 503 Camera Models; The Motor-driven EL Camera Models; The Hasselblad 200 Camera Models…”
Publicado 2008
Biblioteca Universitat Ramon Llull (Otras Fuentes: Universidad Loyola - Universidad Loyola Granada, Biblioteca de la Universidad Pontificia de Salamanca)Libro electrónico -
1137Publicado 2021Tabla de Contenidos: “…6 The Wawel Variant of the Cracow Version -- 7 Conclusions: The Adaptation of the Saxon-Magdeburg Law and the Evolution of the Legal Text -- 3 Practical Consequences of Textual Divergences: From the Cracow Ms to Jan Łaski's Statutes -- 1 The Weichbild in Jan Łaski's Statutes -- 2 The Urban Community and Its Citizens -- 3 Crime and Criminal Procedure -- 4 The Family and Family Property -- 5 Debtor and Creditor -- 6 Conclusions -- 4 Habent sua fata leges: Glosses, Annotations, and Additions -- 1 Evidence of the Use of the Weichbild in Legal Practice -- 2 Amendations and Additions -- 3 Polish Equivalents of Latin Legal Terms -- 4 Regulae iuris -- 5 Glosses in Printed Copies of Jan Łaski's Statutes: Persistence of the Weichbild's Medieval Conventions -- 6 Conclusions -- Conclusions -- 1 The Significance Weichbild among Other Sources of the Saxon-Magdeburg Law -- 2 The Demand for Latin Texts -- 3 Versions and Variants of an Archetype Compilation -- 4 Cracow - Home of the Urban Law Reform -- 5 Adaptation of the Saxon-Magdeburg Law in Poland -- 6 Practical Consequences of the Evolution of the Weichbild -- 7 Annotations by the Weichbild Users -- 8 The Road to a Single, Authoritative Law Text -- Appendix 1: Concordance Table of Articles -- Appendix 2: Divergences in the Latin Texts of the Weichbild -- Appendix 3: Agreement of the Latin Texts in Gniezno MS (Gn.) …”
Libro electrónico -
1138Publicado 2022Tabla de Contenidos: “…Shortcuts for managing emails -- Shortcuts for creating new meetings -- Sharing your calendars -- Getting help from the Scheduling Assistant -- Using the Focused inbox -- Mentioning someone in an email -- Sending an email later -- Setting up and using Outlook mobile -- Listening to your emails on the go -- Summary -- Chapter 5: Taking and Sharing Notes with Microsoft OneNote -- OneNote structure -- Copying text from a picture -- Making and sharing lists -- Creating a list -- Embedding content, including audio -- Examples of what can be pasted -- Printing to OneNote -- Emailing a OneNote page…”
Libro electrónico -
1139Publicado 2022Tabla de Contenidos: “…The Advent of Precision Immunology: Immunogenetics at the Center of Immune Cell Analysis in Health and Disease -- Next-Generation Sequencing-Based Clonality Detection of Immunoglobulin Gene Rearrangements in B-Cell Lymphoma -- One-Step Next Generation Sequencing of Immunoglobulin and T-Cell Receptor Gene Recombinations for MRD Marker Identification in Acute Lymphoblastic Leukemia -- Immunoglobulin/T-Cell Receptor Gene Rearrangement Analysis Using RNA-Seq -- Minimal Residual Disease Analysis by Monitoring Immunoglobulin and T-Cell Receptor Gene Rearrangements by Quantitative PCR and Droplet Digital PCR -- Quality Control for IG/TR Marker Identification and MRD Analysis -- cfDNA-Based NGS IG Analysis in Lymphoma -- Targeted Locus Amplification as Marker Screening Approach to Detect Immunoglobulin (IG) Translocations in B-Cell Non-Hodgkin Lymphomas -- Immunoglobulin/T-Cell Receptor Capture Strategy for Comprehensive Immunogenetics -- Immunoglobulin Gene Mutational Status Assessment by Next Generation Sequencing in Chronic Lymphocytic Leukemia -- NGS-Based B-Cell Receptor Repertoire Analysis in the Context of Inborn Errors of Immunity -- Generic Multiplex Digital PCR for Accurate Quantification of T-Cells in Copy Number Stable and Unstable DNA Samples -- Gene Engineering T-Cells with T-Cell Receptor for Adoptive Therapy -- Combined Analysis of Transcriptome and T-Cell Receptor Alpha Beta (TRA/TRB) Repertoire in Paucicellular Samples at the Single Cell Level -- AIRR Community Guide to Planning and Performing AIRR-Seq Experiments -- Adaptive Immune Receptor Repertoires (AIRR) Community Guide to TR and IG Gene Annotation -- Adaptive Immune Receptor Repertoires (AIRR) Community Guide to Repertoire Analysis -- Bulk gDNA Sequencing of Antibody Heavy Chain Gene Rearrangements for Detection and Analysis of B-Cell Clone Distribution: A Method by the AIRR Community -- Bulk Sequencing from mRNA with UMI for Evaluation of B-Cell Isotype and Clonal Evolution: A Method by the AIRR Community -- Single Cell Analysis and Tracking of Antigen-Specific T-Cells: Integrating Paired-Chain AIRR-Seq and Transcriptome Sequencing: A Method by the AIRR Community -- Quality Control: Chain Pairing Precision and Monitoring of Cross-Sample Contamination: A Method by the AIRR Community -- Immune Repertoire Analysis on High-Performance Computing Using VDJServer V1: A Method by the AIRR Community -- Data Sharing and Re-Use: A Method by the AIRR Community -- IMGT® Immunoinformatics Tools for Standardized V-DOMAIN Analysis -- IMGT/3Dstructure-DB: T-Cell Receptor TR Paratope and Peptide/Major Histocompatibility pMH Contact Sites and Epitope -- ARResT/Interrogate Immunoprofiling Platform: Concepts, Workflows, and Insights -- Purpose-Built Immunoinformatics for BcR IG/TR Repertoire Data Analysis…”
Libro electrónico -
1140por Larson, RobertTabla de Contenidos: “…Full Installation and Server Core Installation SupportMicrosoft Hyper-V Server 2008; Access Control Using Authorization Manager; Live Backup with Volume Shadow Copy Service; High Availability Using Failover Clustering; Quick Migration; Integration Services; Virtual Machine Import and Export; Virtual Hard Disk Management; Virtual Machine Snapshots; Virtual Machine Connection; Host Operating System Support; Guest Operating System Support; Reviewing Hyper-V; Virtual Machine Hardware Environment; Pass-Through Disks; Virtual IDE Interface; Virtual SCSI Interface; iSCSI Disks; Virtual Networks…”
Publicado 2009
Libro electrónico