Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for curly (0.04 sec)

  1. doc/go1.17_spec.html

    <a href="#Keywords">keyword</a> and the opening brace of the block
    of an "if", "for", or "switch" statement, and the composite literal
    is not enclosed in parentheses, square brackets, or curly braces.
    In this rare case, the opening brace of the literal is erroneously parsed
    as the one introducing the block of statements. To resolve the ambiguity,
    the composite literal must appear within parentheses.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        KUBE_MANIFESTS_TAR_HASH=$(curl "${KUBE_MANIFESTS_TAR_URL}" --silent --show-error | ${sha512sum})
        KUBE_MANIFESTS_TAR_HASH=${KUBE_MANIFESTS_TAR_HASH%%[[:blank:]]*}
      else
        echo "Version doesn't match regexp" >&2
        exit 1
      fi
      if ! SERVER_BINARY_TAR_HASH=$(curl -Ss --fail "${SERVER_BINARY_TAR_URL}.sha512"); then
        echo "Failure trying to curl release .sha512"
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    # files.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    ### Hardcoded constants
    METADATA_SERVER_IP="${METADATA_SERVER_IP:-169.254.169.254}"
    
    # Standard curl flags.
    CURL_FLAGS='--fail --silent --show-error --retry 5 --retry-delay 3 --connect-timeout 10 --retry-connrefused'
    
    function convert-manifest-params {
      # A helper function to convert the manifest args from a string to a list of
    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