Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,163 for extr6 (0.18 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/extraProperties/kotlin/build.gradle.kts

    plugins {
        id("java-library")
    }
    
    val springVersion by extra("3.1.0.RELEASE")
    val emailNotification by extra { "******@****.***" }
    
    sourceSets.all { extra["purpose"] = null }
    
    sourceSets {
        main {
            extra["purpose"] = "production"
        }
        test {
            extra["purpose"] = "test"
        }
        create("plugin") {
            extra["purpose"] = "production"
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 822 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			}
    			debugPrintf("releaseLock %s: reset havePtr (extra=%d)\n", c.name, state.extra())
    
    			// Optimization: only bother loading a new pointer
    			// if we have a value to add to it.
    			c.ptr = counterPtr{nil, nil}
    			if state.extra() != 0 {
    				c.ptr = c.file.lookup(c.name)
    				debugPrintf("releaseLock %s: ptr=%v\n", c.name, c.ptr)
    			}
    		}
    
    		if extra := state.extra(); extra != 0 && c.ptr.count != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	}
    
    	if sa.PodName != "" && sa.PodUID != "" {
    		if info.Extra == nil {
    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[PodNameKey] = []string{sa.PodName}
    		info.Extra[PodUIDKey] = []string{sa.PodUID}
    	}
    	if sa.CredentialID != "" {
    		if info.Extra == nil {
    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[CredentialIDKey] = []string{sa.CredentialID}
    	}
    	if sa.NodeName != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				"X-Remote-Group-2":      {"two-a", "two-b"},
    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    				"X-Remote-extra-2-":     {"kilo", "lima"},
    				"X-Remote-extra-2-Key1": {"echo", "foxtrot"},
    				"X-Remote-Extra-2-key2": {"golf", "hotel"},
    			},
    		},
    
    		"extra prefix matches case-insensitive with unrelated headers": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

                extraComp(MavenPublication) {
                    from components.java
                    groupId "extra.group"
                    artifactId "extra-comp"
                    version "extra"
                }
                extra(MavenPublication) {
                    groupId "extra.group"
                    artifactId "extra"
                    version "extra"
                }
            }
        }
    }
    """)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

        def "detects changes to source in extra source directories"() {
            buildFile << "sourceSets.main.${languageName}.srcDir 'extra'"
    
            source("class A extends B {}")
            file("extra/B.${languageName}") << "class B {}"
            file("extra/C.${languageName}") << "class C {}"
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    	}
    	nt := *t
    	// copy any *T Extra fields, to avoid aliasing
    	switch t.kind {
    	case TMAP:
    		x := *t.extra.(*Map)
    		nt.extra = &x
    	case TFORW:
    		x := *t.extra.(*Forward)
    		nt.extra = &x
    	case TFUNC:
    		x := *t.extra.(*Func)
    		nt.extra = &x
    	case TSTRUCT:
    		x := *t.extra.(*Struct)
    		nt.extra = &x
    	case TINTER:
    		x := *t.extra.(*Interface)
    		nt.extra = &x
    	case TCHAN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/constdecl.go

    const _ /* ERROR "missing init expr for _" */
    const _ = 1, 2 /* ERROR "extra init expr 2" */
    
    const _ /* ERROR "missing init expr for _" */ int
    const _ int = 1, 2 /* ERROR "extra init expr 2" */
    
    const (
    	_ /* ERROR "missing init expr for _" */
    	_ = 1, 2 /* ERROR "extra init expr 2" */
    
    	_ /* ERROR "missing init expr for _" */ int
    	_ int = 1, 2 /* ERROR "extra init expr 2" */
    )
    
    const (
    	_ = 1
    	_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/features/withstaticreference/WithExtensionReferencesPostProcessor.java

            CallableOwnerInfo owner = new CallableOwnerInfo(extra.ownerType, false);
            String methodName = extra.methodName;
            return new CallableInfoImpl(CallableKindInfo.STATIC_METHOD, owner, methodName, originalInfo.getReturnType(), modifiedParameters(originalInfo.getParameters()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/signing/tasks/kotlin/build.gradle.kts

    plugins {
        signing
    }
    
    // Typically set in ~/.gradle/gradle.properties
    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-task[]
    tasks.register<Zip>("stuffZip") {
        archiveBaseName = "stuff"
        from("src/stuff")
    }
    
    signing {
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
Back to top