Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,344 for Usages (0.11 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    	"usages":            "usages specifies a set of key usages requested in the issued certificate.\n\nRequests for TLS client certificates typically request: \"digital signature\", \"key encipherment\", \"client auth\".\n\nRequests for TLS serving certificates typically request: \"key...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//  "ipsec end system",
    	//  "ipsec tunnel",
    	//  "ipsec user",
    	//  "timestamping",
    	//  "ocsp signing",
    	//  "microsoft sgc",
    	//  "netscape sgc"
    	// +listType=atomic
    	Usages []KeyUsage `json:"usages,omitempty" protobuf:"bytes,5,opt,name=usages"`
    
    	// Information about the requesting user.
    	// See user.Info interface for details.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,2,opt,name=username"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/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)
  10. pkg/apis/certificates/v1/zz_generated.conversion.go

    	out.Request = *(*[]byte)(unsafe.Pointer(&in.Request))
    	out.SignerName = in.SignerName
    	out.ExpirationSeconds = (*int32)(unsafe.Pointer(in.ExpirationSeconds))
    	out.Usages = *(*[]certificates.KeyUsage)(unsafe.Pointer(&in.Usages))
    	out.Username = in.Username
    	out.UID = in.UID
    	out.Groups = *(*[]string)(unsafe.Pointer(&in.Groups))
    	out.Extra = *(*map[string]certificates.ExtraValue)(unsafe.Pointer(&in.Extra))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 14.4K bytes
    - Viewed (0)
Back to top