Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ldpkg (0.04 sec)

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

    // go-specific code shared across loaders (5l, 6l, 8l).
    
    // TODO:
    //	generate debugging section in binary.
    //	once the dust settles, try to move some code to
    //		libmach, so that other linkers and ar can share.
    
    func ldpkg(ctxt *Link, f *bio.Reader, lib *sym.Library, length int64, filename string) {
    	if *flagG {
    		return
    	}
    
    	if int64(int(length)) != length {
    		fmt.Fprintf(os.Stderr, "%s: too much pkg data in %s\n", os.Args[0], filename)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_indirect.txt

    -- toolow/toolow.go --
    package toolow
    
    import _ "example.net/indirect/oldpkg"
    
    -- indirect.1/go.mod --
    module example.net/indirect
    
    go 1.16
    -- indirect.1/oldpkg/oldpkg.go --
    package oldpkg
    
    
    -- indirect.2/go.mod --
    module example.net/indirect
    
    go 1.16
    -- indirect.2/oldpkg/oldpkg.go --
    package oldpkg
    -- indirect.2/newpkg/newpkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 16 13:39:46 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		c1 = c2
    		c2 = c3
    		c3 = bgetc(f)
    		if c3 == -1 {
    			Errorf(nil, "truncated object file: %s", pn)
    			return nil
    		}
    	}
    
    	import1 := f.Offset()
    
    	f.MustSeek(import0, 0)
    	ldpkg(ctxt, f, lib, import1-import0-2, pn) // -2 for !\n
    	f.MustSeek(import1, 0)
    
    	fingerprint := ctxt.loader.Preload(ctxt.IncVersion(), f, lib, unit, eof-f.Offset())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. pkg/test/echo/docker/Dockerfile.app_sidecar

    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/istio-sidecar.deb  /tmp/istio-sidecar.deb
    RUN dpkg -i /tmp/istio-sidecar.deb && rm /tmp/istio-sidecar.deb
    
    # Sudoers used to allow tcpdump and other debug utilities.
    COPY sudoers /etc/sudoers
    
    # Install the Echo application
    COPY echo-start.sh /usr/local/bin/echo-start.sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 19 15:53:08 UTC 2022
    - 860 bytes
    - Viewed (0)
  5. docker/Dockerfile.base

      conntrack \
      bsdmainutils \
      net-tools \
      lsof \
      sudo \
      && update-ca-certificates \
      && apt-get upgrade -y \
      && apt-get clean \
      && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old \
      && update-alternatives --set iptables /usr/sbin/iptables-legacy \
      && update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
    
    # Sudoers used to allow tcpdump and other debug utilities.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  6. tests/fuzz/Dockerfile.fuzz

    RUN apt-get update && \
        apt-get install --no-install-recommends -y \
        clang && \
        apt-get clean && \
        rm -rf  /var/log/*log \
        /var/lib/apt/lists/* \
        /var/log/apt/* \
        /var/lib/dpkg/*-old \
        /var/cache/debconf/*-old
    
    RUN go get -u github.com/dvyukov/go-fuzz/go-fuzz \
        github.com/dvyukov/go-fuzz/go-fuzz-dep \
        github.com/dvyukov/go-fuzz/go-fuzz-build
    
    COPY . /istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 12:29:52 UTC 2021
    - 957 bytes
    - Viewed (0)
  7. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        tcpdump \
        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
        && rm -rf  /var/log/*log /var/lib/apt/lists/* /var/log/apt/* /var/lib/dpkg/*-old /var/cache/debconf/*-old
    
    RUN if [ -f /usr/sbin/iptables-legacy ]; then \
        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
        update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy; fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pkg/test/echo/docker/echo-start.sh

    # This is a horrible idea for production images, but these are just for tests.
    [[ -f /tmp/istio-sidecar.rpm ]] && rpm -vi /tmp/istio-sidecar.rpm && rm /tmp/istio-sidecar.rpm
    [[ -f /tmp/istio-sidecar.deb ]] && dpkg -i /tmp/istio-sidecar.deb && rm /tmp/istio-sidecar.deb
    
    # IF ECHO_ARGS is unset, make it an empty string.
    ECHO_ARGS=${ECHO_ARGS:-}
    # Split ECHO_ARGS by spaces.
    IFS=' ' read -r -a ECHO_ARGS_ARRAY <<< "$ECHO_ARGS"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/Dockerfile

    RUN groupadd -g 1001 buildslave && useradd -m -u 1001 -g buildslave buildslave
    RUN mkdir -p /tf/venv
    RUN chown -R buildslave:buildslave /tf
    RUN dpkg -i /patchelf/patchelf_0.14.3-1_arm64.deb
    
    # All lines past this point are reset when $CACHEBUSTER is set. We need this
    # for Python specifically because we install some nightly packages which are
    # likely to change daily.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tools/docker-copy.sh

    set -eu;
    
    # detect_arch returns "amd64", "arm64", or "" depending on if the file is arch specific
    function detect_arch() {
      FILE=${1}
      extension="${FILE##*.}"
      if [[ "${extension}" == "deb" ]]; then
        arch="$(dpkg-deb --info "${FILE}" | grep Arch | cut -d: -f 2 | cut -c 2-)"
        echo "${arch}"
        return 0
      fi
      FILE_INFO=$(file "${FILE}" || true)
      if [[ ${FILE_INFO} == *"ELF 64-bit LSB"* ]]; then
        case ${FILE_INFO} in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top