Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for errorexit (0.34 sec)

  1. src/cmd/link/internal/ld/data.go

    			if int32(o) < 0 && target.Arch.PtrSize > 4 && siz == 4 {
    				st.err.Errorf(s, "non-pc-relative relocation address for %s is too big: %#x (%#x + %#x)", ldr.SymName(rs), uint64(o), ldr.SymValue(rs), r.Add())
    				errorexit()
    			}
    		case objabi.R_DWARFSECREF:
    			if ldr.SymSect(rs) == nil {
    				st.err.Errorf(s, "missing DWARF section for relocation target %s", ldr.SymName(rs))
    			}
    
    			if target.IsExternal() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        for k in "${!map[@]}"; do
          echo "  ${k}:"
          declare -a values
          IFS="${item_sep}" read -ra values <<<"${map[$k]}"
          for val in "${values[@]}"; do
            # declare across two lines so errexit can catch failures
            declare v
            v=$(yaml-quote "${val}")
            echo "    - ${v}"
          done
        done
      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

    # uploaded in the manifests tar ball.
    
    # TODO: this script duplicates templating logic from cluster/saltbase/salt
    # using sed. It should use an actual template parser on the manifest
    # 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.
    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