Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for flavor (0.16 sec)

  1. tests/integration/ambient/baseline_test.go

    				// curl -H "Metadata-Flavor: Google" 169.254.169.254/computeMetadata/v1/instance/service-accounts/default/identity
    				opts := echo.CallOptions{
    					Address: "169.254.169.254",
    					Port:    echo.Port{ServicePort: 80},
    					Scheme:  scheme.HTTP,
    					HTTP: echo.HTTP{
    						// TODO: detect which platform?
    						Headers: headers.New().With("Metadata-Flavor", "Google").Build(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    function Get_IpAliasRange {
      $url = ("http://${GCE_METADATA_SERVER}/computeMetadata/v1/instance/" +
              "network-interfaces/0/ip-aliases/0")
      $client = New-Object Net.WebClient
      $client.Headers.Add('Metadata-Flavor', 'Google')
      return ($client.DownloadString($url)).Trim()
    }
    
    # Retrieves the pod CIDR and sets it in $env:POD_CIDR.
    function Set-PodCidr {
      while($true) {
        $pod_cidr = Get_IpAliasRange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. .bazelrc

    #     nonccl:       Disable nccl support.
    #
    #
    # Remote build execution options (only configured to work with TF team projects for now.)
    #     rbe_base:  General RBE options shared by all flavors.
    #     rbe_linux: General RBE options used on all linux builds.
    #     rbe_win_base:   General RBE options used on all Windows builds. Not to be used standalone.
    #     rbe_win_clang:  Options specific to compiling using Clang.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. configure.py

        error_msg: (String) String with one and only one '%s'. Formatted with each
          invalid response upon check_success(input) failure.
        suppress_default_error: (Bool) Suppress the above error message in favor of
          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top