Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,160 for Mocker (0.51 sec)

  1. samples/wasm_modules/header_injector/Makefile

    .PHONY: docker-push docker-build build clean
    
    VERSION_LIST := 1 2
    HUB ?= gcr.io/istio-testing
    IMAGE_PREFIX ?= /wasm
    IMG := $(HUB)$(IMAGE_PREFIX)/header-injector
    
    all: docker-push
    
    build: plugin.cc plugin.h BUILD WORKSPACE
    	rm -f *.wasm
    	$(foreach VERSION, $(VERSION_LIST), bazel build :plugin-0.0.$(VERSION).wasm && cp bazel-bin/plugin-0.0.$(VERSION).wasm .;)
    
    docker-build: build
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 656 bytes
    - Viewed (0)
  2. build/common.sh

      if [[ -z "${DOCKER_HOST}" ]]; then
        if [[ -S "/var/run/docker.sock" ]] || [[ -S "$(docker context inspect --format  '{{.Endpoints.docker.Host}}' | awk -F 'unix://' '{print $2}')" ]]; then
          kube::log::status "Using docker on macOS"
          return 0
        fi
    
        kube::log::status "No docker host is set."
        kube::log::status "It looks like you're running Mac OS X, but Docker for Mac cannot be found."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. pkg/credentialprovider/keyring_test.go

    		},
    		{
    			globURL:   "https://prefix.docker.*/path",
    			targetURL: "prefix.docker.io/path",
    		},
    		{
    			globURL:   "https://*.docker.io:8888",
    			targetURL: "prefix.docker.io:8888",
    		},
    		{
    			globURL:   "https://prefix.*.io:8888",
    			targetURL: "prefix.docker.io:8888",
    		},
    		{
    			globURL:   "https://prefix.docker.*:8888",
    			targetURL: "prefix.docker.io:8888",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. cluster/images/etcd/cloudbuild.yaml

          - BUILD_IMAGE=debian-build
          - TMPDIR=/workspace
          - HOME=/root  # for docker buildx
        args:
          - '-c'
          - |
            gcloud auth configure-docker \
            && docker buildx create --name img-builder --use \
            && docker buildx inspect --bootstrap \
            && docker run --rm --privileged linuxkit/binfmt:4ea3b9b0938cbd19834c096aa31ff475cc75d281 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 20:51:40 UTC 2024
    - 929 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/injection-with-mismatched-sidecar.yaml

    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      initContainers:
      - image: docker.io/istio/proxyv2:1.3.1
        name: istio-proxy
    ---
    # should not match the injector version.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old-pre
      namespace: enabled-namespace
    spec:
      containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 05:31:06 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. docs/orchestration/docker-compose/README.md

    ## 1. Prerequisites
    
    * Familiarity with [Docker Compose](https://docs.docker.com/compose/overview/).
    * Docker installed on your machine. Download the relevant installer from [here](https://www.docker.com/community-edition#/download).
    
    ## 2. Run Distributed MinIO on Docker Compose
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 19:20:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. .github/workflows/mint.yml

              for volume in $(docker volume ls -q | grep minio); do
                docker volume rm ${volume} || true
              done
    
              docker rmi -f quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}
              docker system prune -f || true
              docker volume prune -f || true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. samples/bookinfo/README.md

    ```
    
    Docker images are now created.
    
    ## Push docker images to docker hub
    
    After the local build is successful, you will need to push the images to Docker hub.  You may need to login to Docker before you run the command using `docker login`.
    
    ```bash
    cd samples/bookinfo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. pkg/volume/util/hostutil/hostutil_linux_test.go

    82 62 0:43 / /var/lib/foo rw,relatime shared:32 - tmpfs tmpfs rw
    83 63 0:44 / /var/lib/bar rw,relatime - tmpfs tmpfs rw
    227 62 253:0 /var/lib/docker/devicemapper /var/lib/docker/devicemapper rw,relatime - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    224 62 253:0 /var/lib/docker/devicemapper/test/shared /var/lib/docker/devicemapper/test/shared rw,relatime master:1 shared:44 - ext4 /dev/mapper/ssd-root rw,seclabel,data=ordered
    `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. cmd/lock-rest-server-common_test.go

    		TimeLastRefresh: UTCNow(),
    	}
    
    	locker.ll.lockMap["name"] = []lockRequesterInfo{
    		lockRequesterInfo1,
    		lockRequesterInfo2,
    	}
    
    	lri := locker.ll.lockMap["name"]
    
    	// test unknown uid
    	if locker.ll.removeEntry("name", dsync.LockArgs{
    		Owner: "owner",
    		UID:   "unknown-uid",
    	}, &lri) {
    		t.Errorf("Expected %#v, got %#v", false, true)
    	}
    
    	if !locker.ll.removeEntry("name", dsync.LockArgs{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 23 17:26:21 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top