Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Precedence (0.17 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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "items": {
                "$ref": "#/definitions/io.k8s.api.core.v1.EnvFromSource"
              },
              "type": "array"
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.autoscaling.autoscaleBehavior }} behavior: {{ toYaml .Values.autoscaling.autoscaleBehavior | nindent 4 }} {{- end }} {{- end }} manifests/charts/gateway/templates/zzz_profile.yaml {{/* Complex logic ahead... We have three sets of values, in order of precedence (last wins): 1. The builtin values.yaml defaults 2. The profile the user selects 3. Users input (-f or --set) Unfortunately, Helm provides us (1) and (3) together (as .Values), making it hard to insert (2). However, we can workaround this by placing...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

            "properties": {
              "excludeResourceRules": {
                "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  8. 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)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

            "properties": {
              "excludeResourceRules": {
                "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  10. 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)
Back to top