Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,344 for Usages (0.1 sec)

  1. 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)
  2. 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)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

                dependencies {
                    testImplementation 'junit:junit:4.13'
                }
            """
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21386")
        def "emits toolchain usages for a build #configureToolchain configured toolchain for '#task' task"() {
            JvmInstallationMetadata jdkMetadata
            if (configureToolchain == "without") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/controller/certificates/signer/signer_test.go

    			case !c.constructionErr && err == nil:
    				// continue with rest of test
    			}
    
    			csr := makeTestCSR(csrBuilder{cn: c.commonName, signerName: c.signerName, approved: c.approved, failed: c.failed, usages: c.usages, org: c.org, dnsNames: c.dnsNames})
    			ctx := context.TODO()
    			if err := s.handle(ctx, csr); err != nil && !c.err {
    				t.Errorf("unexpected err: %v", err)
    			}
    			c.verify(t, client.Actions())
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 15K 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