Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/go/printer/testdata/expressions.input

    	_ = s[0:len(s)]
    	_ = s[0]<<1
    	_ = (s[0]<<1)&0xf
    	_ = s[0] << 2 | s[1] >> 4
    	_ = "foo"+s
    	_ = s+"foo"
    	_ = 'a'+'b'
    	_ = len(s)/2
    	_ = len(t0.x)/a
    
    	// spaces around expressions of different precedence or expressions containing spaces
    	_ = a + -b
    	_ = a - ^b
    	_ = a / *p
    	_ = a + b*c
    	_ = 1 + b*c
    	_ = a + 2*c
    	_ = a + c*2
    	_ = 1 + 2*3
    	_ = s[1 : 2*3]
    	_ = s[a : b-c]
    	_ = s[0:]
    	_ = s[a+b]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/internal/types/testdata/examples/inference.go

    	// (from left to right), and the other may be inferred.
    	mixed[int, string](0, "", false)
    	mixed[int](0, "", false)
    	mixed(0, "", false)
    
    	// Provided type arguments always take precedence over
    	// inferred types.
    	mixed[int, string](1.1 /* ERROR "cannot use 1.1" */, "", false)
    }
    
    func related1[Slice interface{ ~[]Elem }, Elem any](s Slice, e Elem) {}
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 16:49:45 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. docs/distributed/CONFIG.md

    - Ellipses notation (e.g. `{1...10}`) or bracket notations are fully allowed (e.g. `{a,c,f}`) to have multiple entries in one line.
    
    > NOTE: MinIO environmental variables still take precedence over the `config.yaml` file, however `config.yaml` is preferred over MinIO internal config KV settings via `mc admin config set alias/ <sub-system>`.
    
    ### TODO
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemSupportTest.groovy

            // while unlikely that a candidate would expose both JAVA_API_JARS and JAVA_API,
            // this confirms that JAVA_API_JARS takes precedence, per JavaEcosystemSupport
            Usage.JAVA_API          | [JavaEcosystemSupport.DEPRECATED_JAVA_API_JARS, Usage.JAVA_API, JavaEcosystemSupport.DEPRECATED_JAVA_RUNTIME_JARS] | JavaEcosystemSupport.DEPRECATED_JAVA_API_JARS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/go/printer/nodes.go

    // Expressions
    
    func walkBinary(e *ast.BinaryExpr) (has4, has5 bool, maxProblem int) {
    	switch e.Op.Precedence() {
    	case 4:
    		has4 = true
    	case 5:
    		has5 = true
    	}
    
    	switch l := e.X.(type) {
    	case *ast.BinaryExpr:
    		if l.Op.Precedence() < e.Op.Precedence() {
    			// parens will be inserted.
    			// pretend this is an *ast.ParenExpr and do nothing.
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    						Queues:           128,
    						HandSize:         6,
    						QueueLengthLimit: 50,
    					},
    				},
    			},
    		})
    )
    
    // Suggested FlowSchema objects.
    // Ordered by matching precedence, so that their interactions are easier
    // to follow while reading this source.
    var (
    	// the following flow schema exempts probes
    	SuggestedFlowSchemaProbes = newFlowSchema(
    		"probes", "exempt", 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
Back to top