Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 352 for Mocker (0.33 sec)

  1. internal/dsync/drwmutex.go

    			g := Granted{index: index}
    			if c == nil {
    				log("dsync: nil locker\n")
    				ch <- g
    				return
    			}
    
    			var locked bool
    			var err error
    			if isReadLock {
    				if locked, err = c.RLock(netLockCtx, args); err != nil {
    					log("dsync: Unable to call RLock failed with %s for %#v at %s\n", err, args, c)
    				}
    			} else {
    				if locked, err = c.Lock(netLockCtx, args); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker.go

    	workerSharedMemSize = 100 << 20 // 100 MB
    )
    
    // worker manages a worker process running a test binary. The worker object
    // exists only in the coordinator (the process started by 'go test -fuzz').
    // workerClient is used by the coordinator to send RPCs to the worker process,
    // which handles them with workerServer.
    type worker struct {
    	dir     string   // working directory, same as package directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. cluster/images/etcd/Makefile

    	# On arm (which is 32-bit), it can't handle >1GB data in-memory
            ifeq ($(ARCH),arm)
    		cd $(TEMP_DIR) && echo "ENV ETCD_UNSUPPORTED_ARCH=$(ARCH)" >> $(DOCKERFILE)
            endif
    endif
    
    	docker run --rm --privileged multiarch/qemu-user-static:$(QEMUVERSION) --reset -p yes
    	docker buildx version
    	BUILDER=$(shell docker buildx create --use)
    
    	# And build the image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. hack/lib/util.sh

    }
    
    # kube::util::ensure-docker-buildx
    # Check if we have "docker buildx" commands available
    #
    function kube::util::ensure-docker-buildx {
      # podman returns 0 on `docker buildx version`, docker on `docker buildx`. One of them must succeed.
      if docker buildx version >/dev/null 2>&1 || docker buildx >/dev/null 2>&1; then
        return 0
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. Makefile.core.mk

    #-----------------------------------------------------------------------------
    # Target: docker
    #-----------------------------------------------------------------------------
    .PHONY: push
    
    # for now docker is limited to Linux compiles - why ?
    include tools/istio-docker.mk
    
    push: docker.push ## Build and push docker images to registry defined by $HUB and $TAG
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. build/lib/release.sh

      if [[ -n "${save_dir}" ]]; then
        "${DOCKER[@]}" save "${conformance_tag}" > "${save_dir}/conformance-${arch}.tar"
      fi
      kube::log::status "Deleting conformance image ${conformance_tag}"
      "${DOCKER[@]}" rmi "${conformance_tag}" &>/dev/null || true
    }
    
    # This builds all the release docker images (One docker image per binary)
    # Args:
    #  $1 - binary_dir, the directory to save the tared images to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. docs/pt/docs/deployment.md

    Você pode usar <a href="https://www.docker.com/" class="external-link" target="_blank">**Docker**</a> para implantação. Ele tem várias vantagens como segurança, replicabilidade, desenvolvimento simplificado etc.
    
    Se você está usando Docker, você pode utilizar a imagem Docker oficial:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 18 16:16:54 UTC 2022
    - 16.8K bytes
    - Viewed (0)
Back to top