Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,632 for extr6 (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. platforms/documentation/docs/src/samples/java/modules-with-transform/groovy/buildSrc/build.gradle

    dependencies {
        implementation 'org.ow2.asm:asm:8.0.1'
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            // here we register our plugin with an ID
            register("extra-java-module-info") {
                id = "extra-java-module-info"
                implementationClass = "org.gradle.sample.transform.javamodules.ExtraModuleInfoPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 462 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/modules-with-transform/kotlin/buildSrc/build.gradle.kts

        implementation("org.ow2.asm:asm:8.0.1")
    }
    
    repositories {
        mavenCentral()
    }
    
    gradlePlugin {
        plugins {
            // here we register our plugin with an ID
            register("extra-java-module-info") {
                id = "extra-java-module-info"
                implementationClass = "org.gradle.sample.transform.javamodules.ExtraModuleInfoPlugin"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 460 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authorization/cel/compile.go

    	extra := obj.Extra
    	if extra == nil {
    		extra = map[string]authorizationv1.ExtraValue{}
    	}
    	ret := map[string]interface{}{
    		"user":   obj.User,
    		"groups": obj.Groups,
    		"uid":    string(obj.UID),
    		"extra":  extra,
    	}
    	if obj.ResourceAttributes != nil {
    		ret["resourceAttributes"] = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 02 20:56:52 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top