Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 915 for Usages (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

                "The initial role must not contain deprecated usages."
            );
            Preconditions.checkArgument(
                !eventualRole.isConsumptionDeprecated() && !eventualRole.isResolutionDeprecated() && !eventualRole.isDeclarationAgainstDeprecated(),
                "The eventual role must not contain deprecated usages."
            );
    
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/apis/certificates/types.go

    	//
    	// +optional
    	ExpirationSeconds *int32
    
    	// usages specifies a set of usage contexts the key will be
    	// valid for.
    	// See:
    	//	https://tools.ietf.org/html/rfc5280#section-4.2.1.3
    	//	https://tools.ietf.org/html/rfc5280#section-4.2.1.12
    	Usages []KeyUsage
    
    	// Information about the requesting user.
    	// See user.Info interface for details.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/TaskDependencyInternal.java

         * {@inheritDoc}
         *
         * This method inherited from the internal interface should only be used by external code, such as plugins or build scripts,
         * as it may trigger warnings on usages that are considered "invalid" in the third-party code. If the usages
         * are still valid in the Gradle codebase, they should be changed to {@link TaskDependencyInternal#getDependenciesForInternalUse(Task)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. architecture/standards/0002-avoid-using-java-serialization.md

    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    * The configuration cache serialization infrastructure should be used for all serialization.
    * Existing usages of Serializer outside of this infrastructure should be migrated to use it.
    * Existing usages of Java serialization should be migrated to use it.
    * It is ok for Serializer to be used as a replacement for Java serialization as a migration step.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/generated.proto

      //  4. Required, permitted, or forbidden key usages / extended key usages.
      //  5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.
      //  6. Whether or not requests for CA certificates are allowed.
      optional string signerName = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1/generated.proto

      //  4. Required, permitted, or forbidden key usages / extended key usages.
      //  5. Expiration/certificate lifetime: whether it is fixed by the signer, configurable by the admin.
      //  6. Whether or not requests for CA certificates are allowed.
      optional string signerName = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                class TestComponent implements SoftwareComponentInternal, ComponentWithVariants {
                    String name
                    Set usages = []
                    Set variants = []
                }
    
                class TestUsage implements UsageContext {
                    String name
                    Usage usage
                    Set dependencies = []
                    Set dependencyConstraints = []
                    Set artifacts = []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

        /**
         * Ensures no new usages of resolvable + dependency scope Configurations are added and ensures usages of "maybe" methods are avoided.
         */
        @ArchTest
        public static final ArchRule maybe_create_and_resolvable_dependency_scope_factory_methods_are_avoided = freeze(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs := field.ErrorList{}
    
    	// validate usages
    	if err := bootstraputil.ValidateUsages(usages); err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, usages, err.Error()))
    	}
    
    	return allErrs
    }
    
    // ValidateEtcd validates the .Etcd sub-struct.
    func ValidateEtcd(e *kubeadm.Etcd, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.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: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top