Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,721 for extar (0.05 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishMultiProjectIntegTest.groovy

                    from components.java
                    organisation "extra.org"
                    module "extra-module"
                    revision "extra"
                }
                extra(IvyPublication) {
                    organisation "extra.org"
                    module "extra-module-2"
                    revision "extra"
                }
            }
        }
    }
    """)
    
            when:
            fails "publish"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/round_trip_test.go

    	var extra map[string]authenticationv1beta1.ExtraValue
    	if u.Extra != nil {
    		extra = make(map[string]authenticationv1beta1.ExtraValue, len(u.Extra))
    		for k, v := range u.Extra {
    			extra[k] = authenticationv1beta1.ExtraValue(v)
    		}
    	}
    	return authenticationv1beta1.UserInfo{
    		Username: u.Username,
    		UID:      u.UID,
    		Groups:   u.Groups,
    		Extra:    extra,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/list_constraints.txt

    stdout '^$'
    
    # Enabling a tag should include files that require it.
    go list -tags=extra -f '{{range .GoFiles}}{{.}} {{end}}'
    stdout '^empty.go extra.go $'
    go list -tags=extra -f '{{range .Imports}}{{.}} {{end}}'
    stdout '^extra $'
    
    # Packages that require a tag should not be listed unless the tag is on.
    ! go list ./tagonly
    go list -tags=extra ./tagonly
    stdout m/tagonly
    
    -- go.mod --
    module m
    
    go 1.13
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 04 23:54:27 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    	}
    
    	if len(user.GetGroups()) > 1 && user.GetGroups()[1] == "extra-setter-particular-scopes" &&
    		a.GetVerb() == "impersonate" && a.GetResource() == "userextras" && a.GetSubresource() == "scopes" && a.GetName() == "scope-a" && a.GetAPIGroup() == "authentication.k8s.io" {
    		return authorizer.DecisionAllow, "", nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  10. 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)
Back to top