Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pushHead (0.1 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. 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)
  4. 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