Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 312 for pusha (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/regexp/backtrack.go

    			// If during the processing of inst.Out, we encounter
    			// inst.Arg via another path, we want to process it then.
    			// Pushing it here will inhibit that. Instead, re-push
    			// inst with arg==true as a reminder to push inst.Arg out
    			// later.
    			if arg {
    				// Finished inst.Out; try inst.Arg.
    				arg = false
    				pc = inst.Arg
    				goto CheckAndLoop
    			} else {
    				b.push(re, pc, pos, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. cluster/images/etcd-version-monitor/Makefile

    	    /bin/bash -c "CGO_ENABLED=0 go build -o /build/etcd-version-monitor k8s.io/kubernetes/cluster/images/etcd-version-monitor"
    
    	docker build -t $(IMAGE) $(TEMP_DIR)
    
    push: build
    	docker push $(IMAGE)
    
    all: build
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 07:06:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. pkg/queue/delay.go

    				if !push(task) {
    					return
    				}
    			} else {
    				// not ready yet, don't block enqueueing
    				await := time.NewTimer(delay)
    				select {
    				case t := <-d.enqueue:
    					d.mu.Lock()
    					heap.Push(d.queue, t)
    					// put the old "head" back on the queue, it may be scheduled to execute after the one
    					// that was just pushed
    					heap.Push(d.queue, task)
    					d.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top