Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Precedence (0.58 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    func (ps *printState) endScope(b byte) {
    	ps.scopes--
    	ps.writeByte(b)
    }
    
    // precedence is used for operator precedence. This is used to avoid
    // unnecessary parentheses when printing expressions in the LLVM style.
    type precedence int
    
    // The precedence values, in order from high to low.
    const (
    	precPrimary precedence = iota
    	precPostfix
    	precUnary
    	precCast
    	precPtrMem
    	precMul
    	precAdd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    				PostBind: config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    			},
    		},
    		{
    			name: "Reorder MultiPoint plugins (specified extension takes precedence)",
    			plugins: &config.Plugins{
    				MultiPoint: config.PluginSet{
    					Enabled: []config.Plugin{
    						{Name: scoreWithNormalizePlugin1},
    						{Name: testPlugin},
    						{Name: scorePlugin1},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. 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)
  4. doc/go1.17_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: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    /* Symbol Binding - ELFNN_ST_BIND - st_info */
    type SymBind int
    
    const (
    	STB_LOCAL  SymBind = 0  /* Local symbol */
    	STB_GLOBAL SymBind = 1  /* Global symbol */
    	STB_WEAK   SymBind = 2  /* like global - lower precedence */
    	STB_LOOS   SymBind = 10 /* Reserved range for operating system */
    	STB_HIOS   SymBind = 12 /*   specific semantics. */
    	STB_LOPROC SymBind = 13 /* reserved range for processor */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

      params=("${SCHEDULER_TEST_LOG_LEVEL:-"--v=2"}" "${SCHEDULER_TEST_ARGS:-}")
      if [[ -n "${FEATURE_GATES:-}" ]]; then
        params+=("--feature-gates=${FEATURE_GATES}")
      fi
    
      # Scheduler Component Config takes precedence over some flags.
      if [[ -n "${KUBE_SCHEDULER_CONFIG:-}" ]]; then
        create-kube-scheduler-config
        params+=("--config=/etc/srv/kubernetes/kube-scheduler/config")
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			expectedValidationErr:   "static string",
    			costBudget:              300,
    			expectedRemainingBudget: 300,
    		},
    		{
    			name:                  "messageExpression takes precedence over message",
    			message:               "invisible",
    			messageExpression:     `"this is messageExpression"`,
    			costBudget:            celconfig.RuntimeCELCostBudget,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    // that could be controlled by this version, but for now the version
    // specified has no effect.
    //
    // The replace directive has the same syntax as the replace directive in a
    // go.mod file and takes precedence over replaces in go.mod files.  It is
    // primarily intended to override conflicting replaces in different workspace
    // modules.
    //
    // To determine whether the go command is operating in workspace mode, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top