Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 460 for Rm (0.27 sec)

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

    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    # Assume the tree object from initial commit is not available (e.g. partial clone)
    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    
    # Build the module, which should succeed
    go build -v -buildvcs=true -o test
    go version -m test
    stdout '^\tbuild\tvcs.revision=fe3c8204d2332a731166269932dd23760c1b576a$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. prow/buildx-create

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -ex
    
    if [[ "${MULTI_ARCH}" == "true" ]]; then
      docker run --rm --privileged gcr.io/istio-testing/qemu-user-static --reset -p yes
    fi
    
    export DOCKER_CLI_EXPERIMENTAL=enabled
    if ! docker buildx ls | grep -q container-builder; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 21:24:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. samples/tcp-echo/README.md

        service/tcp-echo created
        deployment.apps/tcp-echo created
        ```
    
    1. Test by running the `nc` command from a `busybox` container from within the cluster.
    
        ```console
        $ kubectl run -i --rm --restart=Never dummy --image=busybox -- sh -c "echo world | nc tcp-echo 9000"
        hello world
        pod "dummy" deleted
        ```
    
        As you observe, sending _world_ on a TCP connection to the server results in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 28 07:41:56 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/hack/verify-codegen.sh

    set -o nounset
    set -o pipefail
    
    SCRIPT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
    DIFFROOT="${SCRIPT_ROOT}/pkg"
    TMP_DIFFROOT="$(mktemp -d -t "$(basename "$0").XXXXXX")/pkg"
    
    cleanup() {
      rm -rf "${TMP_DIFFROOT}"
    }
    trap "cleanup" EXIT SIGINT
    
    cleanup
    
    mkdir -p "${TMP_DIFFROOT}"
    cp -a "${DIFFROOT}"/* "${TMP_DIFFROOT}"
    
    "${SCRIPT_ROOT}/hack/update-codegen.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 05 23:05:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. samples/bookinfo/src/ratings/Dockerfile

    #   limitations under the License.
    
    FROM node:21.6-slim
    
    #hadolint ignore=DL3008
    RUN apt-get update \
        && apt-get install curl --no-install-recommends -y \
        && rm -rf /var/lib/apt/lists/*
    
    ARG service_version
    ENV SERVICE_VERSION ${service_version:-v1}
    
    COPY package.json /opt/microservices/
    COPY ratings.js /opt/microservices/
    WORKDIR /opt/microservices
    RUN npm install
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1009 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/verify-codegen.sh

    set -o nounset
    set -o pipefail
    
    SCRIPT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
    DIFFROOT="${SCRIPT_ROOT}/pkg"
    TMP_DIFFROOT="$(mktemp -d -t "$(basename "$0").XXXXXX")/pkg"
    
    cleanup() {
      rm -rf "${TMP_DIFFROOT}"
    }
    trap "cleanup" EXIT SIGINT
    
    cleanup
    
    mkdir -p "${TMP_DIFFROOT}"
    cp -a "${DIFFROOT}"/* "${TMP_DIFFROOT}"
    
    "${SCRIPT_ROOT}/hack/update-codegen.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 05 23:05:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    grep 'mode: set' $WORK/covdata/out.txt
    grep 'mod.example/main/main.go:' $WORK/covdata/out.txt
    grep 'mod.example/sub/sub.go:' $WORK/covdata/out.txt
    ! grep 'rsc.io' $WORK/covdata/out.txt
    
    rm $WORK/covdata
    rm $WORK/modex.exe
    
    #-------------------------------------------
    
    # Repeat the build but with -coverpkg=all
    
    go build -mod=mod -coverpkg=all -o $WORK/modex.exe -cover mod.example/main
    
    # Execute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/issue61415.txt

    at 2023-11-14T13:00:00-05:00
    
    git init
    
    git add go.mod nested
    git commit -m 'nested: add go.mod'
    git branch -m main
    
    git tag has-nested
    
    at 2023-11-14T13:00:01-05:00
    
    git rm -r nested
    git commit -m 'nested: delete subdirectory'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    git log --pretty=oneline
    cmp stdout .git-log
    
    -- .git-refs --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 928 bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util_test.cc

                            const gtl::ArraySlice<T> data) {
        Var* var = CreateVariable<T>(name, shape, data);
        ResourceMgr* rm = device_->resource_manager();
        TF_ASSERT_OK(rm->Create(rm->default_container(), name, var));
    
        ResourceHandle handle;
        handle.set_device(device_->name());
        handle.set_container(rm->default_container());
        handle.set_name(name);
        TypeIndex type_index = TypeIndex::Make<Var>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. pkg/test/fakes/gce_metadata_server/Makefile

    	docker buildx build --platform=linux/amd64,linux/arm64  $(MD_PATH) -t $(IMG):$(TAG) --push
    
    clean:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top