Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 121 for Stopped (2.61 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				(status.State != kubecontainer.ContainerStateExited &&
    					status.State != kubecontainer.ContainerStateUnknown) {
    				continue
    			}
    			// Remove init containers in unknown state. It should have
    			// been stopped before pruneInitContainersBeforeStart is
    			// called.
    			count++
    			// keep the first init container for this name
    			if count == 1 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    	// We must be able to advance this P.
    	//
    	// There are 2 ways a P can stop: ProcStop and ProcSteal. ProcStop is used when the P
    	// is stopped by the same M that started it, while ProcSteal is used when another M
    	// steals the P by stopping it from a distance.
    	//
    	// Since a P is bound to an M, and we're stopping on the same M we started, it must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    // Stops an in-process TensorFlow server.
    TF_CAPI_EXPORT extern void TF_ServerStop(TF_Server* server, TF_Status* status);
    
    // Blocks until the server has been successfully stopped (via TF_ServerStop or
    // TF_ServerClose).
    TF_CAPI_EXPORT extern void TF_ServerJoin(TF_Server* server, TF_Status* status);
    
    // Returns the target string that can be provided to TF_SetTarget() to connect
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_attacher_test.go

    			if apierrors.IsNotFound(err) {
    				<-ticker.C
    				continue
    			}
    			t.Error(err)
    		}
    		if attach != nil {
    			t.Logf("attachment found on try %d, stopping wait...", i)
    			break
    		}
    	}
    	t.Logf("stopped waiting for attachment")
    
    	if attach == nil {
    		t.Logf("attachment not found for id:%v", attachID)
    	} else {
    		attach.Status = status
    		t.Logf("updating attachment %s with attach status %v", attachID, status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  5. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				if currentCondition.Status != v1.ConditionUnknown {
    					currentCondition.Status = v1.ConditionUnknown
    					currentCondition.Reason = "NodeStatusUnknown"
    					currentCondition.Message = "Kubelet stopped posting node status."
    					currentCondition.LastTransitionTime = nowTimestamp
    				}
    			}
    		}
    		// We need to update currentReadyCondition due to its value potentially changed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types.go

    	// Default value is 1.
    	// Example: when this is set to 30%, at most 30% of the total number of nodes
    	// that should be running the daemon pod (i.e. status.desiredNumberScheduled)
    	// can have their pods stopped for an update at any given time. The update
    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		xprintf("warning: --no-clean is deprecated and has no effect; use 'go install std cmd' instead\n")
    	}
    
    	// Don't build broken ports by default.
    	if broken[goos+"/"+goarch] && !force {
    		fatalf("build stopped because the port %s/%s is marked as broken\n\n"+
    			"Use the -force flag to build anyway.\n", goos, goarch)
    	}
    
    	// Set GOPATH to an internal directory. We shouldn't actually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Default value is 1.
    	// Example: when this is set to 30%, at most 30% of the total number of nodes
    	// that should be running the daemon pod (i.e. status.desiredNumberScheduled)
    	// can have their pods stopped for an update at any given time. The update
    	// starts by stopping at most 30% of those DaemonSet pods and then brings
    	// up new DaemonSet pods in their place. Once the new pods are available,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	for i := 0; i < N; i++ {
    		conn, err := Dial("tcp", ln.Addr().String(), clientConfig)
    		if err != nil {
    			b.Fatal(err)
    		}
    		// make sure we're connected and previous connection has stopped
    		if _, err := conn.Write(buf[:1]); err != nil {
    			b.Fatal(err)
    		}
    		if _, err := io.ReadFull(conn, peek); err != nil {
    			b.Fatal(err)
    		}
    		if _, err := conn.Write(buf); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    func (w WaitStatus) ExitStatus() int { return int(w.ExitCode) }
    
    func (w WaitStatus) Signal() Signal { return -1 }
    
    func (w WaitStatus) CoreDump() bool { return false }
    
    func (w WaitStatus) Stopped() bool { return false }
    
    func (w WaitStatus) Continued() bool { return false }
    
    func (w WaitStatus) StopSignal() Signal { return -1 }
    
    func (w WaitStatus) Signaled() bool { return false }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top