Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,721 for extar (0.05 sec)

  1. platforms/documentation/docs/src/snippets/buildlifecycle/taskCreationEvents/kotlin/build.gradle.kts

    tasks.whenTaskAdded {
        extra["srcDir"] = "src/main/java"
    }
    
    val a by tasks.registering
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/options/constant.go

    	// APIServerCertSANs flag sets extra Subject Alternative Names (SANs) to use for the API Server serving certificate. Can be both IP addresses and DNS names.
    	APIServerCertSANs = "apiserver-cert-extra-sans"
    
    	// APIServerExtraArgs flag sets a extra flags to pass to the API Server or override default ones in form of <flagname>=<value>.
    	APIServerExtraArgs = "apiserver-extra-args"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/addmod.go

    		if err != nil {
    			log.Printf("%s: %v", arg, err)
    			exitCode = 1
    			continue
    		}
    
    		a := new(txtar.Archive)
    		title := arg
    		if !strings.Contains(arg, "@") {
    			title += "@" + vers
    		}
    		a.Comment = []byte(fmt.Sprintf("module %s\n\n", title))
    		a.Files = []txtar.File{
    			{Name: ".mod", Data: mod},
    			{Name: ".info", Data: info},
    		}
    		dir = filepath.Clean(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 30 19:41:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyExtraInfoSpecTest.groovy

    class DefaultIvyExtraInfoSpecTest extends Specification {
        def "can add extra info elements" () {
            def DefaultIvyExtraInfoSpec extraInfo = new DefaultIvyExtraInfoSpec()
    
            when:
            extraInfo.add("http://my.extra.info", "foo", "fooValue")
    
            then:
            extraInfo.asMap() == [ (new QName("http://my.extra.info", "foo")): "fooValue" ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			Groups   []string            `json:"groups"`
    			Extra    map[string][]string `json:"extra"`
    		}
    		type status struct {
    			Authenticated bool     `json:"authenticated"`
    			User          userInfo `json:"user"`
    			Audiences     []string `json:"audiences"`
    		}
    
    		var extra map[string][]string
    		if review.Status.User.Extra != nil {
    			extra = map[string][]string{}
    			for k, v := range review.Status.User.Extra {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  6. src/image/gif/reader_test.go

    			// Write the LZW data.
    			b.Write(enc)
    
    			// Write extra bytes inside the same data sub-block where LZW data
    			// ended. Each arbitrarily 0x02.
    			b.WriteString(extra[:tc.extraExisting])
    		}
    
    		if tc.extraSeparate > 0 {
    			// Data sub-block size. This indicates how many extra bytes follow.
    			b.WriteByte(byte(tc.extraSeparate))
    			b.WriteString(extra[:tc.extraSeparate])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

            assert file("metadata").text == "{{http://my.extra.info/bar}bar=barValueChanged, {http://my.extra.info/foo}foo=fooValueChanged}\ndifferentBranch\nmilestone"
        }
    
        private static NamespaceId ns(String name) {
            return new NamespaceId("http://my.extra.info/${name}", name)
        }
    
        private static String declareNS(String name) {
            "(new javax.xml.namespace.QName('http://my.extra.info/${name}', '${name}'))"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ProjectExtensions.kt

    import org.gradle.internal.extensions.stdlib.uncheckedCast
    
    
    inline fun <reified T : Any> Project.setSingletonProperty(value: T) {
        extra[T::class.java.name] = value
    }
    
    
    inline fun <reified T> Project.popSingletonProperty(): T? =
        extra.remove(T::class.java.name)?.uncheckedCast()
    
    
    val Project.extra: ExtraPropertiesExtension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    
    [[sec:extra_properties]]
    ==== Extra Properties
    
    Gradle's enhanced objects, including projects, tasks, and source sets, can hold user-defined properties.
    
    [.multi-language-text.lang-kotlin]
    Add, read, and set extra properties via the owning object's `extra` property. Alternatively, you can access extra properties via Kotlin delegated properties using `by extra`.
    
    [.multi-language-text.lang-groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. pkg/controller/certificates/approver/sarapprove.go

    	extra := make(map[string]authorization.ExtraValue)
    	for k, v := range csr.Spec.Extra {
    		extra[k] = authorization.ExtraValue(v)
    	}
    
    	sar := &authorization.SubjectAccessReview{
    		Spec: authorization.SubjectAccessReviewSpec{
    			User:               csr.Spec.Username,
    			UID:                csr.Spec.UID,
    			Groups:             csr.Spec.Groups,
    			Extra:              extra,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 16:03:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top