Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 908 for Usages (0.16 sec)

  1. 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)
  2. 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)
  3. pkg/kube/inject/app_probe.go

    	TimeoutSeconds int32                   `json:"timeoutSeconds,omitempty"`
    }
    
    // DumpAppProbers returns a json encoded string as `status.KubeAppProbers`.
    // Also update the probers so that all usages of named port will be resolved to integer.
    func DumpAppProbers(pod *corev1.Pod, targetPort int32) string {
    	out := KubeAppProbers{}
    	updateNamedPort := func(p *Prober, portMap map[string]int32) *Prober {
    		if p == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationContainerInternal.java

     * are allowed to change roles. Starting in Gradle 9.0, all Gradle-created configurations will be locked.
     *
     * <p>The methods on this interface are meant to be transitional, and as such all usages of this interface
     * should be migrated to the public API starting in Gradle 9.0.<p>
     *
     * <strong>New configurations should leverage the role-based factory methods on {@link ConfigurationContainer}.</strong>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. 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)
  7. docs/distributed/DESIGN.md

            }
            // Should not happen, but print values just in case.
            panic(fmt.Errorf("reached end of serverPools (total: %v, atTotal: %v, choose: %v)", total, atTotal, choose))
    }
    ```
    
    ## Other usages
    
    ### Advanced use cases with multiple ellipses
    
    Standalone erasure coded configuration with 4 sets with 16 drives each, which spawns drives across controllers.
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top