Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for scope_flags (0.21 sec)

  1. cluster/gce/gci/node-helper.sh

      echo "${metadata}"
    }
    
    # Assumed vars:
    #   scope_flags
    # Parameters:
    #   $1: template name (required).
    function create-linux-node-instance-template {
      local template_name="$1"
      local machine_type="${2:-$NODE_SIZE}"
    
      ensure-gci-metadata-files
      # shellcheck disable=2154 # 'scope_flags' is assigned by upstream
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. cluster/gce/upgrade.sh

      SANITIZED_VERSION="${KUBE_VERSION//[\.\+]/-}"
    
      # TODO(zmerlynn): Refactor setting scope flags.
      local scope_flags=
      if [ -n "${NODE_SCOPES}" ]; then
        scope_flags="--scopes ${NODE_SCOPES}"
      else
        # shellcheck disable=SC2034 # 'scope_flags' is used by upstream
        scope_flags="--no-scopes"
      fi
    
      # Get required node env vars from exiting template.
      local node_env
      node_env=$(get-node-env)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      }
    }
    
    function get-scope-flags() {
      local scope_flags=
      if [[ -n "${NODE_SCOPES}" ]]; then
        scope_flags="--scopes ${NODE_SCOPES}"
      else
        scope_flags="--no-scopes"
      fi
      echo "${scope_flags}"
    }
    
    function create-nodes-template() {
      echo "Creating nodes."
    
      local scope_flags
      scope_flags=$(get-scope-flags)
    
      write-linux-node-env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. cluster/gce/windows/node-helper.sh

      echo "${metadata}"
    }
    
    # $1: template name (required).
    # $2: scopes flag.
    function create-windows-node-instance-template {
      local template_name="$1"
      local scopes_flag="$2"
      create-node-template "${template_name}" "${scopes_flag}" "$(get-windows-node-instance-metadata-from-file)" "$(get-windows-node-instance-metadata)" "windows" "${NODE_SIZE}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 10:20:06 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/scoring.go

    // the original pre-adjustment hairiness limit for the function, and
    // inlineHotMaxBudget is the constant of the same name used in the
    // inliner. Sample output lines:
    //
    // Score  Adjustment  Status  Callee  CallerPos ScoreFlags
    // 115    40          DEMOTED cmd/compile/internal/abi.(*ABIParamAssignment).Offset     expand_calls.go:1679:14|6       panicPathAdj
    // 76     -5n         PROMOTED runtime.persistentalloc   mcheckmark.go:48:45|3   inLoopAdj
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/schedule.go

    	ScoreReadTuple        // must occur immediately after tuple-generating insn (or call)
    	ScoreNilCheck
    	ScoreMemory
    	ScoreReadFlags
    	ScoreDefault
    	ScoreFlags
    	ScoreControl // towards bottom of block
    )
    
    type ValHeap struct {
    	a           []*Value
    	score       []int8
    	inBlockUses []bool
    }
    
    func (h ValHeap) Len() int      { return len(h.a) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top