Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for errorexit (0.13 sec)

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

    		ctxt.Logf("%s", ctxt.loader.Stat())
    		ctxt.Logf("%d liveness data\n", liveness)
    	}
    	bench.Start("Flush")
    	ctxt.Bso.Flush()
    	bench.Start("archive")
    	ctxt.archive()
    	bench.Report(os.Stdout)
    
    	errorexit()
    }
    
    type Rpath struct {
    	set bool
    	val string
    }
    
    func (r *Rpath) Set(val string) error {
    	r.set = true
    	r.val = val
    	return nil
    }
    
    func (r *Rpath) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	}
    	return uint32(ehdr.Shnum) * ELF32SHDRSIZE
    }
    
    func elfsetstring(ctxt *Link, s loader.Sym, str string, off int) {
    	if nelfstr >= len(elfstr) {
    		ctxt.Errorf(s, "too many elf strings")
    		errorexit()
    	}
    
    	elfstr[nelfstr].s = str
    	elfstr[nelfstr].off = off
    	nelfstr++
    }
    
    func elfwritephdrs(out *OutBuf) uint32 {
    	if elf64 {
    		for i := 0; i < int(ehdr.Phnum); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/lib.go

    		}
    	}
    }
    
    func exitIfErrors() {
    	if nerrors != 0 || checkStrictDups > 1 && strictDupMsgCount > 0 {
    		mayberemoveoutfile()
    		Exit(2)
    	}
    
    }
    
    func errorexit() {
    	exitIfErrors()
    	Exit(0)
    }
    
    func loadinternal(ctxt *Link, name string) *sym.Library {
    	zerofp := goobj.FingerprintType{}
    	if ctxt.linkShared && ctxt.PackageShlib != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. hack/ginkgo-e2e.sh

          program+=("--nodes=25")
        fi
        program+=("${ginkgo_args[@]:+${ginkgo_args[@]}}")
        ;;
      delve) program=("dlv" "exec") ;;
      gdb) program=("gdb") ;;
      *) kube::log::error_exit "Unsupported E2E_TEST_DEBUG_TOOL=${E2E_TEST_DEBUG_TOOL}" ;;
    esac
    
    # Move Ginkgo arguments that are understood by the suite when not using
    # the CLI.
    suite_args=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. hack/make-rules/build.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script sets up a go workspace locally and builds all go components.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    KUBE_VERBOSE="${KUBE_VERBOSE:-1}"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 05 14:36:57 UTC 2024
    - 936 bytes
    - Viewed (0)
  7. build/release-images.sh

    # limitations under the License.
    
    # Build Kubernetes release images. This will build the server target binaries,
    # and create wrap them in Docker images, see `make release` for full releases
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    source "${KUBE_ROOT}/build/lib/release.sh"
    
    CMD_TARGETS="${KUBE_SERVER_IMAGE_TARGETS[*]}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. hack/make-rules/test-cmd.sh

    # limitations under the License.
    
    # This command checks that the built commands can function together for
    # simple scenarios.  It does not require Docker.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # start the cache mutation detector by default so that cache mutators will be found
    KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
    export KUBE_CACHE_MUTATION_DETECTOR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. hack/verify-e2e-suites.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks that all E2E test suites are sane, i.e. can be
    # started without an error.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 17 17:35:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. hack/verify-test-featuregates.sh

    # limitations under the License.
    
    # This script checks whether mutable global feature gate is invocated correctly
    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top