Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for highest (0.1 sec)

  1. pilot/pkg/xds/delta.go

    	// initialization is complete.
    	<-con.InitializedCh()
    
    	for {
    		// Go select{} statements are not ordered; the same channel can be chosen many times.
    		// For requests, these are higher priority (client may be blocked on startup until these are done)
    		// and often very cheap to handle (simple ACK), so we check it first.
    		select {
    		case req, ok := <-con.deltaReqChan:
    			if ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    	// Note that even though we set the period to 1s, the relisting itself can
    	// take more than 1s to finish if the container runtime responds slowly
    	// and/or when there are many container changes in one cycle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	fakeRuntime.SetFakeSandboxes(fakeSandboxes)
    
    	actual, err := m.GetPods(ctx, false)
    	assert.NoError(t, err)
    
    	assert.Len(t, actual, 3)
    
    	// Verify that the pods are sorted by their creation time (newest/biggest timestamp first)
    	assert.Equal(t, uint64(createdTimestamps[2]), actual[0].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[0]), actual[1].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[1]), actual[2].CreatedAt)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    			// twice. "container never ran" is different than "container ran and failed".  This is handled differently in the kubelet
    			// and it is handled differently in higher order logic like crashloop detection and handling
    			status.State.Terminated = &v1.ContainerStateTerminated{
    				Reason:   kubecontainer.ContainerReasonStatusUnknown,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    Because `Annotated` is **standard Python**, you still get all the **benefits** from editors and tools, like **autocompletion**, **inline errors**, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top