Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 166 for pirates (0.15 sec)

  1. 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)
  2. 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)
  3. LICENSE

        is invoked, then you must make a good faith effort to ensure that,
        in the event an application does not supply such function or
        table, the facility still operates, and performs whatever part of
        its purpose remains meaningful.
    
        (For example, a function in a library to compute square roots has
        a purpose that is entirely well-defined independent of the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    	ret := newBuilder(nil, restMapper, categoryExpander)
    	ret.fakeClientFn = fakeClientFn
    	return ret
    }
    
    // NewBuilder creates a builder that operates on generic objects. At least one of
    // internal or unstructured must be specified.
    // TODO: Add versioned client (although versioned is still lossy)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks.go

    	return nil, nil
    }
    
    // HTTPProxyCIDRCheck checks if https connection to specific subnet is going
    // to be done directly or over proxy. If proxy detected, it will return warning.
    // Similar to HTTPProxyCheck above, but operates with subnets and uses API
    // machinery transport defaults to simulate kube-apiserver accessing cluster
    // services and pods.
    type HTTPProxyCIDRCheck struct {
    	Proto string
    	CIDR  string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. src/runtime/mgcpacer.go

    	// that scan work in terms of bytes allocated. This gives us our GC's
    	// runway.
    	//
    	// However, the cons/mark ratio is a ratio of rates per CPU-second, but
    	// here we care about the relative rates for some division of CPU
    	// resources among the mutator and the GC.
    	//
    	// To summarize, we have B / cpu-ns, and we want B / ns. We get that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top