Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 627 for pusha (0.32 sec)

  1. 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)
  2. pilot/pkg/model/endpointshards.go

    	// Check if ServiceAccounts have changed. We should do a full push if they have changed.
    	saUpdated := updateShardServiceAccount(ep, hostname)
    
    	// For existing endpoints, we need to do full push if service accounts change.
    	if saUpdated && pushType != FullPush {
    		// Avoid extra logging if already a full push
    		log.Infof("Full push, service accounts changed, %v", hostname)
    		pushType = FullPush
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

    LogicalResult HandleStackPushV2Op(
        TF::StackPushV2Op push,
        llvm::SmallDenseMap<Value, Value>* data_var_to_size_var) {
      auto it = data_var_to_size_var->find(push.getHandle());
      if (it == data_var_to_size_var->end()) {
        return push.emitOpError("unknown stack");
      }
      // Push output simply forward the input element.
      push.replaceAllUsesWith(push.getElem());
      OpBuilder builder(push);
      // Read the current buffer and size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/eds_test.go

    	})
    	ads := s.Connect(nil, nil, watchAll)
    	t.Run("Full Push", func(t *testing.T) {
    		s.Discovery.Push(&model.PushRequest{Full: true})
    		if _, err := ads.Wait(time.Second*5, watchAll...); err != nil {
    			t.Fatal(err)
    		}
    	})
    	t.Run("Incremental Push with updated services", func(t *testing.T) {
    		ads.WaitClear()
    		s.Discovery.Push(&model.PushRequest{
    			Full:           false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/lds.go

    func (g *GrpcConfigGenerator) BuildListeners(node *model.Proxy, push *model.PushContext, names []string) model.Resources {
    	filter := newListenerNameFilter(names, node)
    
    	log.Debugf("building lds for %s with filter:\n%v", node.ID, filter)
    
    	resp := make(model.Resources, 0, len(filter))
    	resp = append(resp, buildOutboundListeners(node, push, filter)...)
    	resp = append(resp, buildInboundListeners(node, push, filter.inboundNames())...)
    
    	return resp
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheConfigurationBuildOperationIntegrationTest.groovy

            }
    
            result.remote.config.useExpectContinue == "false"
    
            result.remote.type == 'HTTP'
            result.remote.push == push
    
    
            where:
            authenticated | credentials            | push
            'true'        | SOME_CREDENTIALS       | true
            'false'       | NO_CREDENTIALS         | false
            'false'       | INCOMPLETE_CREDENTIALS | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/networkfilter.go

    }
    
    func buildMetricsNetworkFilters(push *model.PushContext, proxy *model.Proxy, class istionetworking.ListenerClass, svc *model.Service) []*listener.Filter {
    	return push.Telemetry.TCPFilters(proxy, class, svc)
    }
    
    // setAccessLogAndBuildTCPFilter sets the AccessLog configuration in the given
    // TcpProxy instance and builds a TCP filter out of it.
    func setAccessLogAndBuildTCPFilter(push *model.PushContext, node *model.Proxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/container/heap/heap.go

    //
    //	!h.Less(j, i) for 0 <= i < h.Len() and 2*i+1 <= j <= 2*i+2 and j < h.Len()
    //
    // Note that [Push] and [Pop] in this interface are for package heap's
    // implementation to call. To add and remove things from the heap,
    // use [heap.Push] and [heap.Pop].
    type Interface interface {
    	sort.Interface
    	Push(x any) // add x as element Len()
    	Pop() any   // remove and return element Len() - 1.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top