Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 697 for Usages (0.23 sec)

  1. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	}
    
    	// Build an usages string slice from the Secret data
    	var usages []string
    	for k, v := range secret.Data {
    		// Skip all fields that don't include this prefix
    		if !strings.HasPrefix(k, bootstrapapi.BootstrapTokenUsagePrefix) {
    			continue
    		}
    		// Skip those that don't have this usage set to true
    		if string(v) != "true" {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequestspec.go

    	SignerName        *string                  `json:"signerName,omitempty"`
    	ExpirationSeconds *int32                   `json:"expirationSeconds,omitempty"`
    	Usages            []v1.KeyUsage            `json:"usages,omitempty"`
    	Username          *string                  `json:"username,omitempty"`
    	UID               *string                  `json:"uid,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/fixtures/groovy/lib/build.gradle

    components.java.withVariantsFromConfiguration(configurations.testFixturesRuntimeElements) { skip() }
    // end::disable-test-fixtures-publishing[]
    
    tasks.create("usages") {
        def javaComponentUsages = components.java.usages.collect { it.name }
        doLast {
            javaComponentUsages.each { println(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

    import org.gradle.api.Named;
    
    /**
     * Represents the usage of a configuration. Typical usages include compilation or runtime.
     * This interface allows the user to customize usages by implementing this interface.
     *
     * @since 3.4
     */
    public interface Usage extends Named {
        Attribute<Usage> USAGE_ATTRIBUTE = Attribute.of("org.gradle.usage", Usage.class);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/build.gradle.kts

    javaComponent.withVariantsFromConfiguration(configurations["testFixturesRuntimeElements"]) { skip() }
    // end::disable-test-fixtures-publishing[]
    
    tasks.create("usages") {
        val javaComponentUsages = (components["java"] as SoftwareComponentInternal).usages.map { it.name }
        doLast {
            javaComponentUsages.forEach { println(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/testdata/client.config.json

                    "expiry": "876000h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "client auth"
                    ]
                },
                "expired": {
                    "expiry": "1h",
                    "not_before": "1990-12-31T23:59:00Z",
                    "not_after": "1990-12-31T23:59:00Z",
                    "usages": [
                        "signing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 613 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/testdata/client.config.json

                    "expiry": "876000h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "client auth"
                    ]
                },
                "expired": {
                    "expiry": "1h",
                    "not_before": "1990-12-31T23:59:00Z",
                    "not_after": "1990-12-31T23:59:00Z",
                    "usages": [
                        "signing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 20:06:38 UTC 2017
    - 613 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/testdata/client.config.json

                    "expiry": "876000h",
                    "usages": [
                        "signing",
                        "key encipherment",
                        "client auth"
                    ]
                },
                "expired": {
                    "expiry": "1h",
                    "not_before": "1990-12-31T23:59:00Z",
                    "not_after": "1990-12-31T23:59:00Z",
                    "usages": [
                        "signing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 613 bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1beta1/certificatesigningrequestspec.go

    	SignerName        *string                       `json:"signerName,omitempty"`
    	ExpirationSeconds *int32                        `json:"expirationSeconds,omitempty"`
    	Usages            []v1beta1.KeyUsage            `json:"usages,omitempty"`
    	Username          *string                       `json:"username,omitempty"`
    	UID               *string                       `json:"uid,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. pkg/controller/certificates/approver/sarapprove_test.go

    		func(b *csrBuilder) {
    			b.cn = "mike"
    		},
    		func(b *csrBuilder) {
    			b.orgs = nil
    		},
    		func(b *csrBuilder) {
    			b.orgs = []string{"system:master"}
    		},
    		func(b *csrBuilder) {
    			b.usages = append(b.usages, capi.UsageServerAuth)
    		},
    		func(b *csrBuilder) {
    			b.signerName = "example.com/not-correct"
    		},
    		func(b *csrBuilder) {
    			b.signerName = capi.KubeletServingSignerName
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top