Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 627 for pusha (0.22 sec)

  1. releasenotes/notes/push-cds-on-auto-passthrough-gateway-change.yaml

    Jacek Ewertowski <******@****.***> 1715273579 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:59 UTC 2024
    - 181 bytes
    - Viewed (0)
  2. 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
    BOOKINFO_LATEST=true BOOKINFO_TAG=$TAG BOOKINFO_HUB=$HUB src/build-services.sh --push
    ```
    
    For example:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestBuildCache.groovy

        }
    
        def localCacheConfiguration(boolean push = true) {
            """
                buildCache {
                    local {
                        directory = '${cacheDir.absoluteFile.toURI()}'
                        push = $push
                    }
                }
            """
        }
    
        def remoteCacheConfiguration(boolean push = true) {
            """
                buildCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. samples/builder/README.md

    ## Building for testing
    
    To build all images and push them:
    
    ```bash
    docker buildx bake --push
    ```
    
    This will push to `localhost:5000` by default, which you can override with `HUB=localhost:5000`.
    It will also build `linux/amd64,linux/arm64` which you can override with `PLATFORMS`.
    
    You can also build a set of images instead of all of them:
    
    ```bash
    docker buildx bake --push examples-helloworld-v1 tcp-echo-server
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 928 bytes
    - Viewed (0)
  5. pilot/pkg/status/resourcelock_test.go

    			Meta: config.Meta{Generation: 11},
    		}
    	}, 10)
    	ctx, cancel := context.WithCancel(context.Background())
    	workers.Run(ctx)
    	workers.Push(r1, c1, nil)
    	workers.Push(r1, c2, nil)
    	workers.Push(r1, c1, nil)
    	<-x
    	<-y
    	<-x
    	workers.Push(r1, c1, nil)
    	workers.Push(r1a, c1, nil)
    	<-y
    	<-x
    	select {
    	case <-x:
    		t.FailNow()
    	default:
    	}
    	<-y
    	result := atomic.LoadInt32(&runCount)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. src/container/heap/heap_test.go

    	}
    }
    
    func Test(t *testing.T) {
    	h := new(myHeap)
    	h.verify(t, 0)
    
    	for i := 20; i > 10; i-- {
    		h.Push(i)
    	}
    	Init(h)
    	h.verify(t, 0)
    
    	for i := 10; i > 0; i-- {
    		Push(h, i)
    		h.verify(t, 0)
    	}
    
    	for i := 1; h.Len() > 0; i++ {
    		x := Pop(h).(int)
    		if i < 20 {
    			Push(h, 20+i)
    		}
    		h.verify(t, 0)
    		if x != i {
    			t.Errorf("%d.th pop got %d; want %d", i, x, i)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  7. pkg/queue/instance_test.go

    		}
    	}
    }
    
    func TestRetry(t *testing.T) {
    	q := NewQueue(1 * time.Microsecond)
    	stop := make(chan struct{})
    	defer close(stop)
    
    	// Push a task that fails the first time and retries.
    	wg := sync.WaitGroup{}
    	wg.Add(2)
    	failed := false
    	q.Push(func() error {
    		defer wg.Done()
    		if failed {
    			return nil
    		}
    		failed = true
    		return errors.New("fake error")
    	})
    
    	go q.Run(stop)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/syscall/mksyscall.pl

    				push @args, "uintptr($name)", "uintptr($name>>32)";
    			} else {
    				push @args, "uintptr($name)";
    			}
    		} elsif($type eq "int64" && $dragonfly) {
    			if ($func !~ /^extp(read|write)/i) {
    				push @args, "0";
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} elsif($_32bit eq "little-endian") {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. cluster/addons/addon-manager/README.md

    $ make push ARCH=arm64
    # ---> staging-k8s.gcr.io/addon-manager/kube-addon-manager-arm64:VERSION
    
    $ make push ARCH=ppc64le
    # ---> staging-k8s.gcr.io/addon-manager/kube-addon-manager-ppc64le:VERSION
    
    $ make push ARCH=s390x
    # ---> staging-k8s.gcr.io/addon-manager/kube-addon-manager-s390x:VERSION
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  10. docs/en/docs/js/custom.js

                                // so put an additional one
                                buffer.push("");
                            }
                            const bufferValue = buffer.join("<br>");
                            dataValue["value"] = bufferValue;
                            useLines.push(dataValue);
                            buffer = [];
                        }
                    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
Back to top