Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 146 for pirates (0.11 sec)

  1. 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)
  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. 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)
  6. 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)
  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/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)
  9. 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)
  10. android/guava/src/com/google/common/base/CharMatcher.java

        return new InRange(startInclusive, endInclusive);
      }
    
      /**
       * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
       * which operates on primitive {@code char} instances instead.
       */
      public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top