Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 500 for Usages (0.12 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/certificates.k8s.io.v1beta1.CertificateSigningRequest.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "request": "AQ==",
        "signerName": "signerNameValue",
        "expirationSeconds": 8,
        "usages": [
          "usagesValue"
        ],
        "username": "usernameValue",
        "uid": "uidValue",
        "groups": [
          "groupsValue"
        ],
        "extra": {
          "extraKey": [
            "extraValue"
          ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/certificates.k8s.io.v1.CertificateSigningRequest.json

            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "request": "AQ==",
        "signerName": "signerNameValue",
        "expirationSeconds": 8,
        "usages": [
          "usagesValue"
        ],
        "username": "usernameValue",
        "uid": "uidValue",
        "groups": [
          "groupsValue"
        ],
        "extra": {
          "extraKey": [
            "extraValue"
          ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/certificates.k8s.io.v1.CertificateSigningRequest.yaml

      uid: uidValue
    spec:
      expirationSeconds: 8
      extra:
        extraKey:
        - extraValue
      groups:
      - groupsValue
      request: AQ==
      signerName: signerNameValue
      uid: uidValue
      usages:
      - usagesValue
      username: usernameValue
    status:
      certificate: Ag==
      conditions:
      - lastTransitionTime: "2005-01-01T01:01:01Z"
        lastUpdateTime: "2004-01-01T01:01:01Z"
        message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/PatternHelper.java

    import static org.apache.ivy.util.StringUtils.isNullOrEmpty;
    
    /**
     * Utility methods originally used directly from {@link IvyPatternHelper}, but
     * which have been now copied to facilitate alterations and also to isolate
     * the usages from Ivy concepts.
     */
    public class PatternHelper {
    
        public static final String TYPE_KEY = "type";
    
        public static final String EXT_KEY = "ext";
    
        public static final String ARTIFACT_KEY = "artifact";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

        GradleInternal gradleInstanceForProject(ProjectInternal referrerProject, GradleInternal gradle);
    
        /**
         * Provides an implementation of a tracker that handles the usages of TaskDependency API in the context
         * of the current project. The tracker checks that the usages for possible violation of cross-project model access restriction.
         * @param referrerProject The project providing the context.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectInternal.java

         * Do not use this method to access the child projects in the Gradle codebase!
         * The implementations may add checks that enforce correct usage of the public API, such as
         * cross-project model access checks, which are meant to report warnings on incorrect API usages
         * from third-party code. The internal usages won't pass these checks and will break.
         *
         * @see ProjectInternal#getChildProjectsUnchecked()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 21:18:55 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveState.java

     */
    public interface ExternalComponentGraphResolveState extends ComponentGraphResolveState {
    
        /**
         * @deprecated Try to avoid using this. This method exposes legacy stateful metadata. Usages should be
         * replaced by using the stateful types like {@link ComponentGraphResolveState} and
         * {@link org.gradle.internal.component.model.ComponentArtifactResolveState}.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/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 Jun 06 15:23:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCustomComponentIntegTest.groovy

            publishedModule.parsedPom.scopes.runtime.assertDependsOn('group:module:1.0')
            publishedModule.parsedModuleMetadata.variants*.name == ["usage"]
            publishedModule.parsedModuleMetadata.variant("usage").files*.name == ["publishTest-1.9.text"]
            publishedModule.parsedModuleMetadata.variant("usage").dependencies*.coords == ['group:module:1.0']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 7K bytes
    - Viewed (0)
  10. pkg/apis/certificates/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	if in.ExpirationSeconds != nil {
    		in, out := &in.ExpirationSeconds, &out.ExpirationSeconds
    		*out = new(int32)
    		**out = **in
    	}
    	if in.Usages != nil {
    		in, out := &in.Usages, &out.Usages
    		*out = make([]KeyUsage, len(*in))
    		copy(*out, *in)
    	}
    	if in.Groups != nil {
    		in, out := &in.Groups, &out.Groups
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:59 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top