Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for rerunning (0.21 sec)

  1. src/runtime/proc.go

    		}
    	}
    
    	// Transition from _Grunning to _Gscan|_Gpreempted. We can't
    	// be in _Grunning when we dropg because then we'd be running
    	// without an M, but the moment we're in _Gpreempted,
    	// something could claim this G before we've fully cleaned it
    	// up. Hence, we set the scan bit to lock down further
    	// transitions until we can dropg.
    	casGToPreemptScan(gp, _Grunning, _Gscan|_Gpreempted)
    	dropg()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		case cs.State == kubecontainer.ContainerStateUnknown &&
    			oldStatus != nil && // we have an old status
    			oldStatus.State.Running != nil: // our previous status was running
    			// if this happens, then we know that this container was previously running and isn't anymore (assuming the CRI isn't failing to return running containers).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    				{IP: "fd01::1234"},
    			},
    		},
    		{
    			name:      "Dual-stack with CRI returning wrong family first",
    			nodeIP:    "",
    			criPodIPs: []string{"fd01::1234", "10.0.0.1"},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    				{IP: "fd01::1234"},
    			},
    		},
    		{
    			name:      "Dual-stack with explicit node IP with CRI returning wrong family first",
    			nodeIP:    "192.168.1.1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			// Test ready is not enough for reporting running
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test4"},
    				Spec:       api.PodSpec{Containers: make([]api.Container, 2)},
    				Status: api.PodStatus{
    					Phase: "podPhase",
    					ContainerStatuses: []api.ContainerStatus{
    						{Ready: true, RestartCount: 3, State: api.ContainerState{Running: &api.ContainerStateRunning{}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    				"with-old-record": {Terminated: &v1.ContainerStateTerminated{}},
    			},
    		},
    		// For running container, State should be Running, LastTerminationState should be retrieved from latest terminated status.
    		{
    			containers: []v1.Container{{Name: "running"}},
    			statuses: []*kubecontainer.Status{
    				{
    					Name:      "running",
    					State:     kubecontainer.ContainerStateRunning,
    					StartedAt: testTimestamp,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. pkg/scheduler/schedule_one_test.go

    			pod:       st.MakePod().Name("test-prefilter").UID("test-prefilter").Obj(),
    			wantNodes: nil,
    			wErr:      fmt.Errorf(`running PreFilter plugin "FakePreFilter": %w`, errors.New("injected error status")),
    		},
    		{
    			name: "test prefilter plugin returning node",
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterPreFilterPlugin(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    // Conn represents a single database connection rather than a pool of database
    // connections. Prefer running queries from [DB] unless there is a specific
    // need for a continuous single database connection.
    //
    // A Conn must call [Conn.Close] to return the connection to the database pool
    // and may do so concurrently with a running query.
    //
    // After a call to [Conn.Close], all operations on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. fastapi/applications.py

                Optional[int],
                Doc(
                    """
                    The default status code to be used for the response.
    
                    You could override the status code by returning a response directly.
    
                    Read more about it in the
                    [FastAPI docs for Response Status Code](https://fastapi.tiangolo.com/tutorial/response-status-code/).
                    """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        return derive(future.transformAsync(applyFunction, executor));
      }
    
      /**
       * Returns an {@link AsyncClosingFunction} that applies an {@link AsyncFunction} to an input,
       * ignoring the DeferredCloser and returning a {@code ClosingFuture} derived from the returned
       * {@link ListenableFuture}.
       *
       * <p>Use this method to pass a transformation to {@link #transformAsync(AsyncClosingFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    	err = expectSyncNotBlocked(fakeDiscoveryClient, &gc.workerLock)
    	if err != nil {
    		t.Fatalf("Expected garbagecollector.Sync to be running but it is blocked: %v", err)
    	}
    	assertMonitors(t, gc, "pods", "deployments")
    
    	// Simulate the discovery client returning an error
    	fakeDiscoveryClient.setPreferredResources(nil, fmt.Errorf("error calling discoveryClient.ServerPreferredResources()"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top