Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 460 for Rm (0.1 sec)

  1. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    -- gen_testtags.sh --
    #!/bin/bash
    
    # This is not part of the test.
    # Run this to generate and update the repository on vcs-test.golang.org.
    
    set -euo pipefail
    cd "$(dirname "$0")"
    rm -rf tagtests
    mkdir tagtests
    cd tagtests
    
    git init
    echo module vcs-test.golang.org/git/tagtests.git >go.mod
    echo package tagtests >tagtests.go
    git add go.mod tagtests.go
    git commit -m 'create module tagtests'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_use_toolchain.txt

    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work use with newer modules should bump go and toolchain,
    # including updating to a newer toolchain as needed.
    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    rm go.work
    go work init
    env GOTOOLCHAIN=local
    ! go work use ./m1_22_0
    stderr '^go: m1_22_0'${/}'go.mod requires go >= 1.22.0 \(running go 1.21; GOTOOLCHAIN=local\)$'
    env GOTOOLCHAIN=auto
    go work use ./m1_22_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. bin/update_ztunnel.sh

    # $1 = repo
    function getSha() {
      local dir result
      dir=$(mktemp -d)
      git clone --depth=1 "https://github.com/istio/${1}.git" -b "${UPDATE_BRANCH}" "${dir}"
    
      result="$(cd "${dir}" && git rev-parse HEAD)"
      rm -rf "${dir}"
    
      echo "${result}"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 11 17:50:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/setup.packages.sh

    export DEBIAN_FRONTEND=noninteractive
    
    apt-get update
    # Remove commented lines and blank lines
    apt-get install -y --no-install-recommends $(sed -e '/^\s*#.*$/d' -e '/^\s*$/d' "$1" | sort -u)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. docs/distributed/decom-encrypted-kes.sh

    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    ./mc mirror internal myminio/versioned-1/ --quiet >/dev/null
    
    ## Soft delete (creates delete markers)
    ./mc rm -r --force myminio/versioned >/dev/null
    ./mc rm -r --force myminio/versioned-1 >/dev/null
    
    ## mirror again to create another set of version on top
    ./mc mirror internal myminio/versioned/ --quiet >/dev/null
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. docs/bucket/replication/setup_ilm_expiry_replication.sh

    			echo "==========================="
    			cat "/tmp/${site}_2.log"
    		done
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    	rm -rf /tmp/multisiteb
    	rm -rf /tmp/multisitec
    	rm -rf /tmp/multisited
    	rm -rf /tmp/data
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    export MINIO_BROWSER=off
    export MINIO_ROOT_USER="minio"
    export MINIO_ROOT_PASSWORD="minio123"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. samples/helloworld/src/Dockerfile

    RUN pip install --no-cache-dir --require-hashes -r requirements.txt
    
    # old image had curl and could be used as a sample client if desired
    RUN apt-get update \
      && apt-get install curl --no-install-recommends -y \
      && rm -rf /var/lib/apt/lists/*
    
    EXPOSE 5000
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 24 19:35:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.usertools/setup_venv_test.sh

    # 
    # This will create a venv with that wheel file installed in it, and a symlink
    # in ./venv_and_symlink_name/tensorflow to ./tensorflow. We use this for the
    # "pip" tests.
    
    python -m venv /$1
    mkdir -p $1
    rm -f ./$1/tensorflow
    ln -s $(ls /$1/lib) /$1/lib/python3
    ln -s ../tensorflow $1/tensorflow
    # extglob is necessary for @(a|b) pattern matching
    # see "extglob" in the bash manual page ($ man bash)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_platform_info.h

            pjrt_device_compiler,
        DeviceCompilationProfiler** profiler);
    
    // Same as the above function but takes the resource manager `rm` instead of an
    // OpKernelContext.
    Status GetOrCreatePjRtDeviceCompilerAndProfiler(
        const XlaPlatformInfo& platform_info, ResourceMgr* rm,
        FunctionLibraryRuntime* flr,
        DeviceCompiler<xla::PjRtLoadedExecutable, xla::PjRtClient>**
            pjrt_device_compiler,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/version_buildvcs_nested.txt

    go build -buildvcs=false
    go mod init example.com/root/gitsub
    exec git commit --allow-empty -m empty # status commands fail without this
    go build
    rm go.mod
    cd ..
    ! go build ./gitsub
    stderr '^error obtaining VCS status: main package is in repository ".*gitsub" but current directory is in repository ".*root"$'
    go build -buildvcs=false -o=gitsub${/} ./gitsub
    
    -- main.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top