Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for pirates (0.15 sec)

  1. src/cmd/internal/goobj/objfile.go

    // for reading and writing object files.
    
    // The object file is understood by the compiler, assembler, linker, and tools. They
    // have "high level" code that operates on object files, handling application-specific
    // logics, and use this package for the actual reading and writing. Specifically, the
    // code below:
    //
    // - cmd/internal/obj/objfile.go (used by cmd/asm and cmd/compile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector.go

    // to the API server to delete/update the objects accordingly.
    // Note that having the dependencyGraphBuilder notify the garbage collector
    // ensures that the garbage collector operates with a graph that is at least as
    // up to date as the notification is sent.
    type GarbageCollector struct {
    	restMapper     meta.ResettableRESTMapper
    	metadataClient metadata.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. cmd/metacache-set.go

    	partial func(entries metaCacheEntries, errs []error)
    
    	// finished will be called when all streams have finished and
    	// more than one disk returned an error.
    	// Will not be called if everything operates as expected.
    	finished func(errs []error)
    }
    
    // listPathRaw will list a path on the provided drives.
    // See listPathRawOptions on how results are delivered.
    // Directories are always returned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  4. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	// Please refer to the issue for more context:
    	// https://github.com/kubernetes/kubernetes/issues/88355
    
    	// Below, vx is a volume name, and nx is a node name.
    
    	// Operation sequence:
    	// opZ(v0) starts (operates on a different volume from all other operations)
    	// op1(v1, n1) starts
    	// op2(v1, n2) starts
    	// opZ(v0) ends with success
    	// op2(v1, n2) ends with an error (exponential backoff should be triggered)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  5. docs/pt/docs/async.md

    ## Detalhes Técnicos
    
    Versões modernas de Python tem suporte para **"código assíncrono"** usando algo chamado **"corrotinas"**, com sintaxe **`async` e `await`**.
    
    Vamos ver aquela frase por partes na seção abaixo:
    
    * **Código assíncrono**
    * **`async` e `await`**
    * **Corrotinas**
    
    ## Código assíncrono
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // A typical use is to identify the source locations in a program
    // that are miscompiled by a given compiler optimization.
    //
    // Usage:
    //
    //	bisect [flags] [var=value...] command [arguments...]
    //
    // Bisect operates on a target command line – the target – that can be
    // run with various changes individually enabled or disabled. With none
    // of the changes enabled, the target is known to succeed (exit with exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      // before legalization.
      AddLegalizationPasses(pm, legalize_chlo, device_type, enable_op_fallback,
                            lower_to_xla_hlo);
    
      if (lower_to_xla_hlo) {
        // This pass operates on MHLO control flow ops so it should be legalized
        // after the control flow ops are legalized.
        pm.addPass(mlir::mhlo::CreateLegalizeTFCommunicationPass());
    
        // Everything should be MHLO after this.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject_test.go

    			// and painful to test here.
    			if c.expectedError != "" || c.skipWebhook {
    				return
    			}
    			// Next run the webhook test. This one is a bit trickier as the webhook operates
    			// on Pods, but the inputs are Deployments/StatefulSets/etc. As a result, we need
    			// to convert these to pods, then run the injection This test will *not*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. docs/es/docs/async.md

    ## Detalles Técnicos
    
    Las versiones modernas de Python tienen soporte para **"código asíncrono"** usando algo llamado **"coroutines"**, usando la sintaxis **`async` y `await`**.
    
    Veamos esa frase por partes en las secciones siguientes:
    
    * **Código Asíncrono**
    * **`async` y `await`**
    * **Coroutines**
    
    ## Código Asíncrono
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    Depending on the format of the metadata of a module, it is mapped differently to the variant-centric representation of the metadata:
    
    - If the module has Gradle Module Metadata, the data structure the rule operates on is very similar to what you find in the module's `.module` file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top