Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 70 for pirates (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/index/suffixarray/sais.go

    //   are stripped when creating _32_32 and _64_64 forms.
    //   (Those lines are typically 8-bit-specific optimizations.)
    //
    // - A function with a name ending only in _32 operates on []int32
    //   and is duplicated into a _64 form. (Note that it may still take a []byte,
    //   but there is no need for a version of the function in which the []byte
    //   is widened to a full integer array.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    In the performance screen, the _"Build cache"_ tab shows you statistics about:
    
    * how many tasks interacted with a cache
    * which cache was used
    * transfer and pack/unpack rates for these cache entries
    
    image::performance/cache-performance.png[title="Inspecting the performance of the build cache for a build"]
    
    The _"Task execution"_ tab shows details about task cacheability.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. doc/asm.html

    This is because the compiler suite (see
    <a href="https://9p.io/sys/doc/compiler.html">this description</a>)
    needs no assembler pass in the usual pipeline.
    Instead, the compiler operates on a kind of semi-abstract instruction set,
    and instruction selection occurs partly after code generation.
    The assembler works on the semi-abstract form, so
    when you see an instruction like <code>MOV</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top