Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 387 for Usages (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

      let summary = "Removes `stablehlo.custom_call @Sharding`";
      let description = [{
        Finds `stablehlo.custom_call @Sharding` and removes all instances of them,
        replacing the usages by its operand. This is used where sharding doesn't
        make much sense or sharding custom calls are incompatible, e.g. on-device
        targets.
      }];
      let dependentDialects = ["mlir::stablehlo::StablehloDialect"];
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/certlist_test.go

    			BaseName: "test-ca",
    		},
    		{
    			config: pkiutil.CertConfig{
    				Config: certutil.Config{
    					AltNames: certutil.AltNames{
    						DNSNames: []string{"test-domain.space"},
    					},
    					Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    				},
    			},
    			configMutators: []configMutatorsFunc{
    				setCommonNameToNodeName(),
    			},
    			CAName:   "test-ca",
    			Name:     "test-daughter",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all usages as having a nullable type, even when
        //  it is explicitly spelled.
    
        private final DisplayName displayName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all Try usages as having a nullable type, even when
        //  it is explicitly spelled, e.g.
        //  Try<String> t = Try.successful("some")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    ```
    
    To make old plugins compatible we need to replace all the usages of old JavaCompile with the new one.
    
    Let’s say it’s used in a plugin as:
    
    ```java
    public void applyPlugin(Project project) {
         project.tasks.named("compileJava", JavaCompile.class, task -> {
             task.setSourceCompatibility("1.8");
         });
    }
    ```
    
    We will then replace all such usages with interception code:
    ```java
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	cfg := &pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName:   "test-common-name",
    			Organization: testCertOrganization,
    			Usages:       []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    			AltNames: certutil.AltNames{
    				IPs:      []net.IP{netutils.ParseIPSloppy("10.100.0.1")},
    				DNSNames: []string{"test-domain.space"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Comparators.java

     * com.google.common.collect.Ordering} (otherwise).
     *
     * <h3>Relationship to {@code Ordering}</h3>
     *
     * <p>In light of the significant enhancements to {@code Comparator} in Java 8, the overwhelming
     * majority of usages of {@code Ordering} can be written using only built-in JDK APIs. This class is
     * intended to "fill the gap" and provide those features of {@code Ordering} not already provided by
     * the JDK.
     *
     * @since 21.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/crypto/x509/name_constraints_test.go

    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:example.com"},
    			ekus: []string{"serverAuth"},
    		},
    		expectedError: "incompatible key usage",
    	},
    
    	// #67: SGC key usages used to permit serverAuth and clientAuth,
    	// but don't anymore.
    	{
    		roots: []constraintsSpec{
    			{},
    		},
    		intermediates: [][]constraintsSpec{
    			{
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/leaderelection.go

    		// When Pilot exits, the lease will be dropped. This is more likely to lead to a case where
    		// to instances are both considered the leaders. As such, if this is intended to be use for mission-critical
    		// usages (rather than avoiding duplication of work), this may need to be re-evaluated.
    		ReleaseOnCancel: true,
    	}
    	if !l.perRevision {
    		// Function to use to decide whether this leader should steal the existing lock.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      return !has_nonxla_output && !has_dynamic_output;
    }
    
    // Replaces `external_operands` with the results from `recv_at_host`.
    // For non-static shapes, only replace operand usage if op is in the same
    // region as insertion.
    // For static-shapes, Replace operand usages if op is in the same region as
    // insertion or if the op is outside compiled and will be moved to host later.
    void ReplaceExternalOperandUsage(ArrayRef<Value> external_operands,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top