Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for jdeb (0.09 sec)

  1. pom.xml

    				</executions>
    			</plugin>
    			<!-- deb -->
    			<plugin>
    				<groupId>org.vafer</groupId>
    				<artifactId>jdeb</artifactId>
    				<configuration>
    					<deb>${project.build.directory}/releases/${project.artifactId}-${project.version}.deb</deb>
    					<controlDir>${project.build.directory}/generated-packaging/deb/scripts</controlDir>
    					<!--
    					<signPackage>${deb.sign}</signPackage>
    					<keyring>${gpg.keyring}</keyring>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. tools/packaging/packaging.mk

    # TODO: rename istio-sidecar.deb to istio.deb
    
    # Note: adding --deb-systemd ${REPO_ROOT}/tools/packaging/common/istio.service will result in
    # a /etc/systemd/system/multi-user.target.wants/istio.service and auto-start. Currently not used
    # since we need configuration.
    # --iteration 1 adds a "-1" suffix to the version that didn't exist before
    ${TARGET_OUT_LINUX}/release/istio-sidecar.deb: | ${TARGET_OUT_LINUX} deb/fpm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/encoding/gob/debug.go

    		// Field number 0 is CommonType
    		deb.delta(1)
    		com := deb.common()
    		// Field number 1 is type Id of elem
    		deb.delta(1)
    		id := deb.typeId()
    		// Field number 3 is length
    		deb.delta(1)
    		length := deb.int()
    		wire.ArrayT = &arrayType{com, id, length}
    
    	case 1: // slice type, one field of {{Common}, elem}
    		// Field number 0 is CommonType
    		deb.delta(1)
    		com := deb.common()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K 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. 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)
  6. ci/official/containers/linux_arm64/setup.sources.sh

    # Set up custom sources
    cat >/etc/apt/sources.list.d/custom.list <<SOURCES
    # More Python versions: Deadsnakes
    deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    
    # LLVM/Clang 17 repository
    deb http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main
    deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.patchelf/build_patchelf.sh

    # problems that would occur with a binary package
    
    mkdir -p /patchelf
    cd /patchelf
    echo deb-src http://ports.ubuntu.com/ubuntu-ports/ jammy universe>>/etc/apt/sources.list
    apt-get update
    apt-get -y build-dep patchelf/jammy
    apt-get -b source patchelf/jammy
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 15:53:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. tools/docker.yaml

      files:
      - tools/packaging/common/envoy_bootstrap.json
      - tests/testdata/certs
      - pkg/test/echo/docker/echo-start.sh
      - pkg/test/echo/docker/sudoers
      targets:
      - ${TARGET_OUT_LINUX}/release/istio-sidecar.deb
      - ${TARGET_OUT_LINUX}/client
      - ${TARGET_OUT_LINUX}/server
      emulationRequired: true
    - name: app_sidecar_ubuntu_noble
      dockerfile: pkg/test/echo/docker/Dockerfile.app_sidecar
      files:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/Dockerfile

    FROM nvidia/cuda:12.3.1-devel-ubuntu20.04 as devel
    ################################################################################
    COPY --from=builder /dt10 /dt10
    COPY --from=builder /patchelf/patchelf_0.14.3-1_arm64.deb /patchelf/patchelf_0.14.3-1_arm64.deb
    
    # Install devtoolset devel dependencies
    COPY setup.sources.sh /setup.sources.sh
    COPY setup.packages.sh /setup.packages.sh
    COPY devel.packages.txt /devel.packages.txt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 09:32:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top