Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 697 for Usages (0.1 sec)

  1. android/guava/src/com/google/common/html/ElementTypesAreNonnullByDefault.java

    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    @TypeQualifierDefault({FIELD, METHOD, PARAMETER})
    @Nonnull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/ElementTypesAreNonnullByDefault.java

    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    @TypeQualifierDefault({FIELD, METHOD, PARAMETER})
    @Nonnull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 17 15:44:29 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/ElementTypesAreNonnullByDefault.java

    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    @TypeQualifierDefault({FIELD, METHOD, PARAMETER})
    @Nonnull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 27 16:39:39 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/ElementTypesAreNonnullByDefault.java

    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    @TypeQualifierDefault({FIELD, METHOD, PARAMETER})
    @Nonnull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:04:33 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/ElementTypesAreNonnullByDefault.java

    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    @TypeQualifierDefault({FIELD, METHOD, PARAMETER})
    @Nonnull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ElementTypesAreNonnullByDefault.java

    import javax.annotation.Nonnull;
    import javax.annotation.meta.TypeQualifierDefault;
    
    /**
     * Marks all "top-level" types as non-null in a way that is recognized by Kotlin. Note that this
     * unfortunately includes type-variable usages, so we also provide {@link ParametricNullness} to
     * "undo" it as best we can.
     */
    @GwtCompatible
    @Retention(RUNTIME)
    @Target(TYPE)
    @TypeQualifierDefault({FIELD, METHOD, PARAMETER})
    @Nonnull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 05 22:27:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/certs/renewal/filerenewer_test.go

    	// renews a certificate
    	certCfg := &pkiutil.CertConfig{
    		Config: certutil.Config{
    			CommonName: "test-certs",
    			AltNames: certutil.AltNames{
    				DNSNames: []string{"test-domain.space"},
    			},
    			Usages: []x509.ExtKeyUsage{x509.ExtKeyUsageClientAuth},
    		},
    	}
    
    	cert, _, err := fr.Renew(certCfg)
    	if err != nil {
    		t.Fatalf("unexpected error renewing cert: %v", err)
    	}
    
    	// verify the renewed certificate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 04:36:54 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. pkg/apis/certificates/fuzzer/fuzzer.go

    	return []interface{}{
    		func(obj *certificates.CertificateSigningRequestSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			obj.Usages = []certificates.KeyUsage{certificates.UsageKeyEncipherment}
    			obj.SignerName = "example.com/custom-sample-signer"
    			obj.ExpirationSeconds = csr.DurationToExpirationSeconds(time.Hour + time.Minute + time.Second)
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ReportingTaskDependencyUsageTracker.kt

    import org.gradle.api.internal.tasks.TaskDependencyUsageTracker
    import org.gradle.internal.configuration.problems.ProblemFactory
    import org.gradle.internal.configuration.problems.ProblemsListener
    
    
    /** Reports all usages of the tracked TaskDependency APIs as problems using the [problems] listener.
     * Also checks which tasks in the API return value come from the other projects and tracks the projects coupling using the [coupledProjectsListener]. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-evaluator/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/runner/EvaluationResult.kt

                data class DocumentCheckFailures(val failures: List<DocumentCheckFailure>) : StageFailure
                data class AssignmentErrors(val usages: List<AssignmentTraceElement.FailedToRecordAssignment>) : StageFailure
            }
        }
    }
    
    
    val <R : StepResult> EvaluationResult<R>.stepResultOrPartialResult
        get() = when (this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top