Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for STARTED (0.24 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    		})
    	}
    }
    
    func TestAllocateAndAddPodWithInitContainers(t *testing.T) {
    	testCases := []testMemoryManager{
    		{
    			description: "should remove init containers from the state file, once app container started",
    			policyName:  policyTypeStatic,
    			machineInfo: returnMachineInfo(),
    			assignments: state.ContainerMemoryAssignments{},
    			expectedAssignments: state.ContainerMemoryAssignments{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    // error from roundTrip.
    func (pc *persistConn) shouldRetryRequest(req *Request, err error) bool {
    	if http2isNoCachedConnError(err) {
    		// Issue 16582: if the user started a bunch of
    		// requests at once, they can all pick the same conn
    		// and violate the server's max concurrent streams.
    		// Instead, match the HTTP/1 behavior for now and dial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DICS_DISABLE    DICS_STATE = 0x00000002 // The device is being disabled.
    	DICS_PROPCHANGE DICS_STATE = 0x00000003 // The properties of the device have changed.
    	DICS_START      DICS_STATE = 0x00000004 // The device is being started (if the request is for the currently active hardware profile).
    	DICS_STOP       DICS_STATE = 0x00000005 // The device is being stopped. The driver stack will be unloaded and the CSCONFIGFLAG_DO_NOT_START flag will be set for the device.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	off       int           // offset of str within original string
    	subs      substitutions // substitutions
    	templates []*Template   // templates being processed
    
    	// The number of entries in templates when we started parsing
    	// a lambda, plus 1 so that 0 means not parsing a lambda.
    	lambdaTemplateLevel int
    
    	parsingConstraint bool // whether parsing a constraint expression
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/devicemanager/manager_test.go

    	// it as a DevicePlugin resource. This makes sure any pod that was scheduled
    	// during the time of propagating capacity change to the scheduler will be
    	// properly rejected instead of being incorrectly started.
    	err = testManager.writeCheckpoint()
    	as.Nil(err)
    	testManager.healthyDevices = make(map[string]sets.Set[string])
    	testManager.unhealthyDevices = make(map[string]sets.Set[string])
    	err = testManager.readCheckpoint()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			testCheckResultsInStrictOrder(t, w, scenario.expectedInitialEventsBookmark(createdPods))
    
    			createdPods = []*example.Pod{}
    			// add a pod that is greater than the storage's RV when the watch was started
    			for _, obj := range scenario.podsAfterEstablishingWatch {
    				obj.Namespace = ns
    				out := &example.Pod{}
    				err = store.Create(ctx, computePodKey(obj), obj, out, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The mode defines the action the controller will take when a pod is detected as broken.
      // If repairPods is true, the controller will dynamically repair any broken pod by setting up the pod networking configuration even after it has started.
      // Note the pod will be crashlooping, so this may take a few minutes to become fully functional based on when the retry occurs.
      // This requires no RBAC privilege, but will require the CNI agent to run as a privileged pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. src/time/time_test.go

    	loc, err := LoadLocation("Asia/Shanghai")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	tests := [...]struct {
    		give Time
    		want Time
    	}{
    		// 14 Apr 1991 - Daylight Saving Time Started
    		// When time of "Asia/Shanghai" was about to reach
    		// Sunday, 14 April 1991, 02:00:00 clocks were turned forward 1 hour to
    		// Sunday, 14 April 1991, 03:00:00 local daylight time instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			}
    
    			// Add/remove the orphan finalizer as the options dictates.
    			// Note that this occurs after checking pendingGraceufl, so
    			// finalizers cannot be updated via DeleteOptions if deletion has
    			// started.
    			existingAccessor, err := meta.Accessor(existing)
    			if err != nil {
    				return nil, err
    			}
    			needsUpdate, newFinalizers := deletionFinalizersForGarbageCollection(ctx, e, existingAccessor, options)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top