Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 697 for Usages (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/intermediate.config.json

    {
        "signing": {
            "default": {
                "usages": [
                    "digital signature",
                    "cert sign",
                    "crl sign",
                    "signing",
                    "key encipherment",
                    "client auth"
                ],
                "expiry": "876000h",
                "ca_constraint": {
                    "is_ca": true
                }
            }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 20:06:38 UTC 2017
    - 391 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/testdata/intermediate.config.json

    {
        "signing": {
            "default": {
                "usages": [
                    "digital signature",
                    "cert sign",
                    "crl sign",
                    "signing",
                    "key encipherment",
                    "client auth"
                ],
                "expiry": "876000h",
                "ca_constraint": {
                    "is_ca": true
                }
            }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 391 bytes
    - Viewed (0)
  3. pkg/controller/certificates/approver/sarapprove.go

    }
    
    func isSelfNodeClientCert(csr *capi.CertificateSigningRequest, x509cr *x509.CertificateRequest) bool {
    	if csr.Spec.Username != x509cr.Subject.CommonName {
    		return false
    	}
    	return isNodeClientCert(csr, x509cr)
    }
    
    func usagesToSet(usages []capi.KeyUsage) sets.String {
    	result := sets.NewString()
    	for _, usage := range usages {
    		result.Insert(string(usage))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/testdata/intermediate.config.json

    {
        "signing": {
            "default": {
                "usages": [
                    "digital signature",
                    "cert sign",
                    "crl sign",
                    "signing",
                    "key encipherment",
                    "client auth"
                ],
                "expiry": "876000h",
                "ca_constraint": {
                    "is_ca": true
                }
            }
        }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 391 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/certificates/v1beta1/zz_generated.deepcopy.go

    		*out = new(string)
    		**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: Tue Aug 24 19:47:49 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/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: Fri May 06 21:25:20 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1/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: Tue Aug 24 19:47:49 UTC 2021
    - 6K bytes
    - Viewed (0)
  10. 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)
Back to top