Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 162 for Precedence (0.18 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	RetryPeriod time.Duration
    
    	// KeyComparison defines a function to compare the existing leader's key to our own.
    	// If the function returns true, indicating our key has high precedence, we will take over
    	// leadership even if their is another un-expired leader.
    	//
    	// This can be used to implemented a prioritized leader election. For example, if multiple
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. src/strings/replace.go

    		}
    		// The first occurrence of old->new map takes precedence
    		// over the others with the same old string.
    		for i := len(oldnew) - 2; i >= 0; i -= 2 {
    			o := oldnew[i][0]
    			n := oldnew[i+1][0]
    			r[o] = n
    		}
    		return &r
    	}
    
    	r := byteStringReplacer{toReplace: make([]string, 0, len(oldnew)/2)}
    	// The first occurrence of old->new map takes precedence
    	// over the others with the same old string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top