Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 380 for Usages (0.17 sec)

  1. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

            }
        }
    }
    
    /**
     * Registers services which are not covered by [FirStandaloneServiceRegistrar]. In general, this concerns services which need to be
     * registered for production Standalone and Standalone test usages, but *not* for IDE mode Analysis API tests, which rely on
     * [FirStandaloneServiceRegistrar] as a basis.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            }
        }
    }
    """
            if (mapping) {
                extra = """
    project(":project1") {
        publishing {
            publications.maven {
                versionMapping {
                    usage(Usage.JAVA_API) {
                        fromResolutionResult()
                    }
                }
            }
        }
    }
    """ + extra
            }
            createBuildScripts(extra)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. 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)
  5. android/guava-tests/test/com/google/common/math/QuantilesTest.java

       * 2. Tests on hardcoded datasets include non-finite values for chains starting with scale(10);
       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
       */
    
      /*
       * Covering every combination would lead to an explosion in the number of tests. So we cover only:
       * - median with compute taking a double-collection and with computeInPlace;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. cmd/kubeadm/app/cmd/init_test.go

    							BindPort:         6443,
    						},
    						BootstrapTokens: []bootstraptokenv1.BootstrapToken{
    							{
    								Token:  &bootstraptokenv1.BootstrapTokenString{ID: "abcdef", Secret: "0123456789abcdef"},
    								Usages: []string{"signing", "authentication"},
    								TTL: &metav1.Duration{
    									Duration: bootstraptokenv1.DefaultTokenDuration,
    								},
    								Groups: []string{"system:bootstrappers:kubeadm:default-node-token"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top