Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 115 for Precedence (0.16 sec)

  1. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

                }
    
                storedState.updates
                    .filter { update ->
                        // Only loaded properties can be overridden.
                        // Mutated properties are taking precedence over overridden because the
                        // first ones defined in build logic, hence we want to restore it.
                        update !is SystemPropertyLoad || !overriddenSystemProperties.contains(update.key)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/gw_topology_test.go

    // should be used to populate the upstream XFF header.
    //
    // If the PROXY protocol is enabled, and additionally an XFF header is provided AND numTrustedProxies is set, the XFF header on the incoming request
    // will take precedence when populating the upstream XFF header.
    func TestProxyProtocolTCPGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    			if t.Settings().Compatibility {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication.go

    }
    
    func restConfigFromKubeconfig(configAuthInfo *clientcmdapi.AuthInfo) (*rest.Config, error) {
    	config := &rest.Config{}
    
    	// blindly overwrite existing values based on precedence
    	if len(configAuthInfo.Token) > 0 {
    		config.BearerToken = configAuthInfo.Token
    		config.BearerTokenFile = configAuthInfo.TokenFile
    	} else if len(configAuthInfo.TokenFile) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/config/config.go

    // All labels and annotations in the list must match.
    // All fields are optional, if they are not specified, all values match.
    // Pattern matching style is glob.
    // Exclusions have a higher precedence than inclusions.
    // Ordering defines pod priority for cases where the archive exceeds the maximum
    // size and some logs must be dropped.
    //
    // Examples:
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. src/os/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	if _, err := f.Write([]byte("appended some data\n")); err != nil {
    		f.Close() // ignore error; Write error takes precedence
    		log.Fatal(err)
    	}
    	if err := f.Close(); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func ExampleChmod() {
    	if err := os.Chmod("some-filename", 0644); err != nil {
    		log.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. pkg/apis/core/annotation_key_constants.go

    	// `service.kubernetes.io/topology-aware-hints` and
    	// `service.kubernetes.io/topology-mode` annotations are set, the value of
    	// `service.kubernetes.io/topology-aware-hints` has precedence.
    	DeprecatedAnnotationTopologyAwareHints = "service.kubernetes.io/topology-aware-hints"
    
    	// AnnotationTopologyMode can be used to enable or disable Topology Aware
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/conversion/converter.go

    	}
    	c.untyped[typePair{tA, tB}] = fn
    	return nil
    }
    
    // Merge returns a new ConversionFuncs that contains all conversions from
    // both other and c, with other conversions taking precedence.
    func (c ConversionFuncs) Merge(other ConversionFuncs) ConversionFuncs {
    	merged := NewConversionFuncs()
    	for k, v := range c.untyped {
    		merged.untyped[k] = v
    	}
    	for k, v := range other.untyped {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/graph.go

    // and Require must not have been called for it already.
    //
    // If any of the modules in reqs has the same path as g's target,
    // the target must have higher precedence than the version in req.
    func (g *Graph) Require(m module.Version, reqs []module.Version) {
    	// To help catch disconnected-graph bugs, enforce that all required versions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/net/http/routing_tree.go

    // patterns.
    //
    // The root of the tree branches on the host of the request.
    // The next level branches on the method.
    // The remaining levels branch on consecutive segments of the path.
    //
    // The "more specific wins" precedence rule can result in backtracking.
    // For example, given the patterns
    //     /a/b/z
    //     /a/{x}/c
    // we will first try to match the path "/a/b/c" with /a/b/z, and
    // when that fails we will try against /a/{x}/c.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. ReadMe.md

      Otherwise, native-only dependencies may not be added to the verification metadata. This is because `local.properties` has higher 
      precedence than the `-Pkotlin.native.enabled=true` specified in the Gradle command.
    
    ## Using -dev versions
    
    We publish `-dev` versions frequently.
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top