Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Transition (0.16 sec)

  1. pkg/kubelet/kubelet_node_status_test.go

    			},
    			status: &v1.NodeStatus{
    				Conditions: []v1.NodeCondition{notReadyCondition, memoryPressureCondition},
    			},
    			expectChange: true,
    		},
    		{
    			name: "Node status changes if transition time changes.",
    			originalStatus: &v1.NodeStatus{
    				Conditions: []v1.NodeCondition{readyCondition, memoryPressureCondition},
    			},
    			status: &v1.NodeStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    		},
    		{
    			name: "Should make patch request to update an existing pod condition, but the transition time should remain unchanged because the status is the same",
    			currentPodConditions: []v1.PodCondition{
    				{
    					Type:               "currentType",
    					Status:             "currentStatus",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    },{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.\nNote: metrics here do not use rate() to avoid missing transition from \"No series\"; series are not reported if there are no errors at all.\n","fieldConfig":{"defaults":{"custom":{"fillOpacity":10,"gradientMode":"hue","showPoints":"never"}}},"gridPos":{"h":10,"w":8,"x":0,"y":14},"id":12,"interval":"5s","opti...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    	// after each request completes, regardless of whether it failed.
    	// If these are too high, OS X exhausts its ephemeral ports
    	// and hangs waiting for them to transition TCP states. That's
    	// not what we want to test. TODO(bradfitz): use an io.Pipe
    	// dialer for this test instead?
    	const (
    		numClients    = 20
    		reqsPerClient = 25
    	)
    	var wg sync.WaitGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	// and exclusively during close.
    	closemu sync.RWMutex
    
    	// dc is owned until close, at which point
    	// it's returned to the connection pool.
    	dc *driverConn
    
    	// done transitions from false to true exactly once, on close.
    	// Once done, all operations fail with ErrConnDone.
    	done atomic.Bool
    
    	releaseConnOnce sync.Once
    	// releaseConnCache is a cache of c.closemuRUnlockCondReleaseConn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top