Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for flavor (0.12 sec)

  1. cluster/gce/upgrade.sh

    #   ZONE
    function get-node-env() {
      # TODO(zmerlynn): Make this more reliable with retries.
      gcloud compute --project "${PROJECT}" ssh --zone "${ZONE}" "${NODE_NAMES[0]}" --command \
        "curl --fail --silent -H 'Metadata-Flavor: Google' \
          'http://metadata/computeMetadata/v1/instance/attributes/kube-env'" 2>/dev/null
    }
    
    # Read os distro information from /os/release on node.
    # $1: The name of node
    #
    # Assumed vars:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    	readinessFlags  *readinessFlags
    
    	// duration used for graceful shutdown.
    	shutdownDuration time.Duration
    
    	// internalStop is closed when the server is shutdown. This should be avoided as much as possible, in
    	// favor of AddStartFunc. This is only required if we *must* start something outside of this process.
    	// For example, everything depends on mesh config, so we use it there rather than trying to sequence everything
    	// in AddStartFunc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/os/exec/exec.go

    	//  Intentionally ignore errors: environ returns a best-effort environment no matter what.
    	env, _ := c.environ()
    	return env
    }
    
    // dedupEnv returns a copy of env with any duplicates removed, in favor of
    // later values.
    // Items not of the normal environment "key=value" form are preserved unchanged.
    // Except on Plan 9, items containing NUL characters are removed, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top