Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 116 for Precedence (0.38 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    // The test has two checks, first with maxLength unset to check if maxLength can be concluded from enums,
    // second with maxLength set to ensure it takes precedence.
    func genEnumWithRuleAndValues(rule string, values ...string) func(maxLength *int64) *schema.Structural {
    	enums := make([]schema.JSON, 0, len(values))
    	for _, v := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. internal/config/config.go

    	ValueSourceCfg
    	ValueSourceEnv
    )
    
    // ResolveConfigParam returns the effective value of a configuration parameter,
    // within a subsystem and subsystem target. The effective value is, in order of
    // decreasing precedence:
    //
    // 1. the value of the corresponding environment variable if set,
    // 2. the value of the parameter in the config store if set,
    // 3. the default value,
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks.go

    	// that is major.minor+1 (all patch and pre-releases versions included)
    	// NB. in semver patches number is a numeric, while pre-release is a string where numeric identifiers always have lower precedence than non-numeric identifiers.
    	//     thus setting the value to x.y.0-0 we are defining the very first patch - pre-releases within x.y minor release.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    			toMatch := match.Not(fromMatch)
    			to := toMatch.GetServiceMatches(apps.Ns1.All)
    			fromAndTo := to.Instances().Append(from)
    
    			config.New(t).
    				Source(config.File("testdata/authz/path-precedence.yaml.tmpl")).
    				BuildAll(nil, to).
    				Apply()
    
    			newTrafficTest(t, fromAndTo).
    				FromMatch(fromMatch).
    				ToMatch(toMatch).
    				Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // The pattern "/a%2fb/" matches it, but the pattern "/a/b/" does not.
    //
    // # Precedence
    //
    // If two or more patterns match a request, then the most specific pattern takes precedence.
    // A pattern P1 is more specific than P2 if P1 matches a strict subset of P2’s requests;
    // that is, if P2 matches all the requests of P1 and more.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    be disabled through their individual extension points.\n\nIn terms of precedence, plugin config follows this basic hierarchy\n  1. Specific extension points\n  2. Explicitly configured MultiPoint plugins\n  3. The set of default plugins, as MultiPoint plugins\nThis implies that a higher precedence plugin will run first and overwrite any settings within MultiPoint. Explicitly user-configured plugins also take a higher precedence over default plugins. Within this hierarchy, an Enabled setting takes...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/server.go

    		}
    	}
    	return true
    }
    
    // hasCustomTLSCerts returns the tls cert paths, used both if custom TLS certificates are configured via args or by mounting in well known.
    // while tls args should still take precedence the aim is to encourage loading the DNS tls cert in the well known path locations.
    func hasCustomTLSCerts(tlsOptions TLSOptions) (ok bool, tlsCertPath, tlsKeyPath, caCertPath string) {
    	// load from tls args as priority
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	// - any field of a priorityLevelState held in that map
    	lock sync.RWMutex
    
    	// flowSchemas holds the flow schema objects, sorted by increasing
    	// numerical (decreasing logical) matching precedence.  Every
    	// FlowSchema in this slice is immutable.
    	flowSchemas apihelpers.FlowSchemaSequence
    
    	// priorityLevelStates maps the PriorityLevelConfiguration object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. doc/go_spec.html

    </pre>
    
    <h4 id="Operator_precedence">Operator precedence</h4>
    <p>
    Unary operators have the highest precedence.
    As the  <code>++</code> and <code>--</code> operators form
    statements, not expressions, they fall
    outside the operator hierarchy.
    As a consequence, statement <code>*p++</code> is the same as <code>(*p)++</code>.
    </p>
    <p>
    There are five precedence levels for binary operators.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    		st.advance(1)
    	}
    }
    
    // An operator is the demangled name, and the number of arguments it
    // takes in an expression.
    type operator struct {
    	name string
    	args int
    	prec precedence
    }
    
    // The operators map maps the mangled operator names to information
    // about them.
    var operators = map[string]operator{
    	"aN": {"&=", 2, precAssign},
    	"aS": {"=", 2, precAssign},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top