Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 077 (0.2 sec)

  1. cluster/gce/gci/configure.sh

      if [[ "${status}" -eq 0 || -z "${default}" ]]; then
        return "${status}"
      else
        echo "${default}"
      fi
    }
    
    function download-kube-env {
      # Fetch kube-env from GCE metadata server.
      (
        umask 077
        local -r tmp_kube_env="/tmp/kube-env.yaml"
        # shellcheck disable=SC2086
        retry-forever 10 curl ${CURL_FLAGS} \
          -H "X-Google-Metadata-Request: True" \
          -o "${tmp_kube_env}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  2. src/go/scanner/scanner_test.go

    	{"``", token.STRING, 0, "``", ""},
    	{"`", token.STRING, 0, "`", "raw string literal not terminated"},
    	{"/**/", token.COMMENT, 0, "/**/", ""},
    	{"/*", token.COMMENT, 0, "/*", "comment not terminated"},
    	{"077", token.INT, 0, "077", ""},
    	{"078.", token.FLOAT, 0, "078.", ""},
    	{"07801234567.", token.FLOAT, 0, "07801234567.", ""},
    	{"078e0", token.FLOAT, 0, "078e0", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      [IO.File]::WriteAllBytes($File, [Convert]::FromBase64String($Data))
      Log_Todo ("need to set permissions correctly on ${File}; not sure what the " +
                "Windows equivalent of 'umask 077' is")
      # Linux: owned by root, rw by user only.
      #   -rw------- 1 root root 1.2K Oct 12 00:56 ca-certificates.crt
      #   -rw------- 1 root root 1.3K Oct 12 00:56 kubelet.crt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      if [[ -n "${KUBE_PKI_READERS_GROUP:-}" ]]; then
        (umask 027; echo "${data}" | base64 --decode > "${path}")
        chgrp "${KUBE_PKI_READERS_GROUP:-}" "${path}"
        chmod g+r "${path}"
      else
        (umask 077; echo "${data}" | base64 --decode > "${path}")
      fi
    }
    
    function create-node-pki {
      echo "Creating node pki files"
    
      local -r pki_dir="/etc/srv/kubernetes/pki"
      mkdir -p "${pki_dir}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      export KUBE_CERT="${CERT_DIR}/pki/issued/kubecfg.crt"
      export KUBE_KEY="${CERT_DIR}/pki/private/kubecfg.key"
      export CA_CERT="${CERT_DIR}/pki/ca.crt"
      export CONTEXT="${PROJECT}_${INSTANCE_PREFIX}"
      (
       umask 077
    
       # Update the user's kubeconfig to include credentials for this apiserver.
       create-kubeconfig
      )
    
      # ensures KUBECONFIG is set
      get-kubeconfig-basicauth
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/encoding/json/testdata/code.json.gz

    .0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"157-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"077-expected.png","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"010-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top