Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 332 for Precedence (0.15 sec)

  1. architecture/ambient/peer-authentication.md

    ```yaml
    apiVersion: security.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/options/Option.java

     * If the base class has an option with the name "foo" and an interface has an option with the name "bar",
     * the option "foo" will have precedence over the option "bar" and setting both will result in the value of "foo".
     * </p>
     * <p>
     * <strong>
     *     Depending on this behavior is discouraged. It is only in place to allow legacy migration to interface options.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/clientset.go

    		return nil, err
    	}
    
    	return NewForConfigAndClient(&configShallowCopy, httpClient)
    }
    
    // NewForConfigAndClient creates a new Clientset for the given config and http client.
    // Note the http client provided takes precedence over the configured transport values.
    // If config's RateLimiter is not set and QPS and Burst are acceptable,
    // NewForConfigAndClient will generate a rate-limiter in configShallowCopy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            val kind = unaryExpression.getInOrDecOperationKind()
            val precedence = when (unaryExpression) {
                is KtPostfixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.POSTFIX
                is KtPrefixExpression -> KaCompoundAccess.IncOrDecOperation.Precedence.PREFIX
                else -> error("unexpected KtUnaryExpression $unaryExpression")
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/types.go

    	// CertData takes precedence over CertFile
    	CertData []byte
    	// KeyData holds PEM-encoded bytes (typically read from a client certificate key file).
    	// KeyData takes precedence over KeyFile
    	KeyData []byte `datapolicy:"security-key"`
    	// CAData holds PEM-encoded bytes (typically read from a root certificates bundle).
    	// CAData takes precedence over CAFile
    	CAData []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/DefaultSerializerRegistryTest.groovy

            expect:
            serialize(123L, serializer) == 123L
            serialize(123, serializer) == 123
            serialize(123.4, serializer) == 123.4
        }
    
        def "custom serialization takes precedence over Java serialization"() {
            given:
            def customSerializer = Stub(Serializer) {
                read(_) >> { Decoder decoder ->
                    return decoder.readSmallLong() + 1
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/validation.go

    		// v1 so it should be enabled.
    		enabledAPIString := options.APIEnablement.RuntimeConfig.String()
    		testConfigs := []string{"flowcontrol.apiserver.k8s.io/v1", "api/ga", "api/all"} // in the order of precedence
    		for _, testConfig := range testConfigs {
    			if strings.Contains(enabledAPIString, fmt.Sprintf("%s=false", testConfig)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 12:46:24 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. pilot/pkg/networking/plugin/authn/authentication.go

    	return res
    }
    
    func needPerPortPassthroughFilterChain(port uint32, node *model.Proxy) bool {
    	// If there is any Sidecar defined, check if the port is explicitly defined there.
    	// This means the Sidecar resource takes precedence over the service. A port defined in service but not in Sidecar
    	// means the port is going to be handled by the pass through filter chain.
    	if node.SidecarScope.HasIngressListener() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

            then:
            executedAndNotSkipped ":run"
    
            when:
            run "run"
    
            then:
            executedAndNotSkipped ":run"
        }
    
        def 'arguments passed via command line take precedence and is not incremental by default'() {
            when:
            run("run", "--args", "2 '3' \"4\"")
    
            then:
            executedAndNotSkipped ":run"
            assertOutputFileIs('''\
            2
            3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    Use of wildcards that overlap within the same resource list or across multiple
    entries are not allowed since part of the configuration would be ineffective.
    Resource lists are processed in order, with earlier lists taking precedence.
    
    Example:
    
    	kind: EncryptionConfiguration
    	apiVersion: apiserver.config.k8s.io/v1
    	resources:
    	- resources:
    	  - events
    	  providers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top