Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 144 for Precedence (0.15 sec)

  1. src/net/http/pattern.go

    )
    
    // conflictsWith reports whether p1 conflicts with p2, that is, whether
    // there is a request that both match but where neither is higher precedence
    // than the other.
    //
    //	Precedence is defined by two rules:
    //	1. Patterns with a host win over patterns without a host.
    //	2. Patterns whose method and path is more specific win. One pattern is more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            executer.withTasks("foo").withArguments("--project-cache-dir", someAbsoluteDir.toString()).run()
    
            then:
            someAbsoluteDir.exists()
        }
    
        def "system property GRADLE_USER_HOME has precedence over environment variable"() {
            given:
            buildFile """
                task checkSystemPropertyGradleUserHomeHasPrecedence {
                    def gradleUserHomeDir = gradle.gradleUserHomeDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. operator/pkg/manifest/shared.go

    	if err != nil {
    		return "", nil, err
    	}
    	if sfp := GetValueForSetFlag(setFlags, "installPackagePath"); sfp != "" {
    		// set flag installPackagePath has the highest precedence, if set.
    		installPackagePath = sfp
    	}
    
    	// To generate the base profileOrPath for overlaying with user values, we need the installPackagePath where the profiles
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

         * to be downloaded over the Internet from Gradle's distribution servers.
         * The download will be cached beneath the Gradle User Home directory, the location of which is determined by the following in order of precedence:
         * <ol>
         * <li>The system property {@code "gradle.user.home"}</li>
         * <li>The environment variable {@code "GRADLE_USER_HOME"}</li>
         * </ol>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. pkg/kube/inject/template.go

    		key := v[i]
    		if i+1 >= lenv {
    			dict[key] = ""
    			continue
    		}
    		dict[key] = v[i+1]
    	}
    	return dict
    }
    
    // Merge maps merges multiple maps. Latter maps take precedence over previous maps on overlapping fields
    func mergeMaps(maps ...map[string]string) map[string]string {
    	if len(maps) == 0 {
    		return nil
    	}
    	res := make(map[string]string, len(maps[0]))
    	for _, m := range maps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. pkg/proxy/serviceport.go

    		stickyMaxAgeSeconds: stickyMaxAgeSeconds,
    		externalPolicyLocal: externalPolicyLocal,
    		internalPolicyLocal: internalPolicyLocal,
    	}
    
    	// v1.DeprecatedAnnotationTopologyAwareHints has precedence over v1.AnnotationTopologyMode.
    	var exists bool
    	info.hintsAnnotation, exists = service.Annotations[v1.DeprecatedAnnotationTopologyAwareHints]
    	if !exists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// SkipPhases is a list of phases to skip during command execution.
    	// The list of phases can be obtained with the "kubeadm init --help" command.
    	// The flag "--skip-phases" takes precedence over this field.
    	// +optional
    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// Patches contains options related to applying patches to components deployed by kubeadm during
    	// "kubeadm init".
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

            outcome << ['fails', 'succeeds']
            mutation << ['not added', 'added']
        }
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
        def "variant attributes take precedence over component attributes (component level = #componentLevel)"() {
            given:
            repository {
                'org.test:module:1.0'()
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    The following table lists these methods in order of highest to lowest precedence (the first one wins):
    
    [cols="~,~,~,~"]
    |===
    |Priority |Method |Location |Notes
    
    |1
    |<<command_line_interface#command_line_interface,Command-line flags>>
    |Command line
    |Flags have precedence over properties and environment variables
    
    |2
    |<<#sec:gradle_system_properties,System properties>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. pkg/serviceaccount/jwt.go

    type jwtTokenGenerator struct {
    	iss    string
    	signer jose.Signer
    }
    
    func (j *jwtTokenGenerator) GenerateToken(claims *jwt.Claims, privateClaims interface{}) (string, error) {
    	// claims are applied in reverse precedence
    	return jwt.Signed(j.signer).
    		Claims(privateClaims).
    		Claims(claims).
    		Claims(&jwt.Claims{
    			Issuer: j.iss,
    		}).
    		CompactSerialize()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top