Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for pushHead (0.33 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    	})
    
    	t.Run("Service selects WorkloadEntry: wle occur earlier", func(t *testing.T) {
    		store, kube, fx := setupTest(t)
    		makeIstioObject(t, store, workloadEntry)
    		// 	Other than proxy update, no event pushed when workload entry created as no service entry
    		fx.WaitOrFail(t, "proxy")
    		fx.AssertEmpty(t, 40*time.Millisecond)
    
    		makeService(t, kube, service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	go wait.UntilWithContext(ctx, nc.doNoExecuteTaintingPass, scheduler.NodeEvictionPeriod)
    
    	// Incorporate the results of node health signal pushed from kubelet to master.
    	go wait.UntilWithContext(ctx, func(ctx context.Context) {
    		if err := nc.monitorNodeHealth(ctx); err != nil {
    			logger.Error(err, "Error monitoring node health")
    		}
    	}, nc.nodeMonitorPeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    // (Otherwise ab* would turn into (ab)*.)
    // If r >= 0 and there's a node left over, maybeConcat uses it
    // to push r with the given flags.
    // maybeConcat reports whether r was pushed.
    func (p *parser) maybeConcat(r rune, flags Flags) bool {
    	n := len(p.stack)
    	if n < 2 {
    		return false
    	}
    
    	re1 := p.stack[n-1]
    	re2 := p.stack[n-2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    		minTrigger = sweepDistTrigger
    
    		// Ensure that the heap goal is at least a little larger than
    		// the point at which we triggered. This may not be the case if GC
    		// start is delayed or if the allocation that pushed gcController.heapLive
    		// over trigger is large or if the trigger is really close to
    		// GOGC. Assist is proportional to this distance, so enforce a
    		// minimum distance, even if it means going over the GOGC goal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    	}
    	if added {
    		metrics.SchedulerQueueIncomingPods.WithLabelValues("active", event).Inc()
    		return activeQ
    	}
    	if pInfo.Gated {
    		// In case the pod is gated, the Pod is pushed back to unschedulable Pods pool in addToActiveQ.
    		return unschedulablePods
    	}
    
    	p.unschedulablePods.addOrUpdate(pInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    				nextpc--
    				if nextpc < pcsp.PC {
    					continue
    				}
    			}
    
    			spdelta := int64(pcsp.Value)
    			if !haslr {
    				// Return address has been pushed onto stack.
    				spdelta += int64(d.arch.PtrSize)
    			}
    
    			if haslr && !fi.TopFrame() {
    				// TODO(bryanpkc): This is imprecise. In general, the instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVQ	m_curg(BX), SI
    	MOVQ	SI, g(CX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top