Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 349 for Stopping (0.23 sec)

  1. pkg/kubelet/prober/testing/fake_manager.go

    // Unused methods below.
    
    // AddPod simulates adding a Pod.
    func (FakeManager) AddPod(_ *v1.Pod) {}
    
    // RemovePod simulates removing a Pod.
    func (FakeManager) RemovePod(_ *v1.Pod) {}
    
    // Simulated stopping liveness and startup probes.
    func (FakeManager) StopLivenessAndStartup(_ *v1.Pod) {}
    
    // CleanupPods simulates cleaning up Pods.
    func (FakeManager) CleanupPods(_ map[types.UID]sets.Empty) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/testprog/gc-stress.go

    	sink = make([][]byte, procs)
    
    	for i := 0; i < procs; i++ {
    		i := i
    		go func() {
    			for {
    				sink[i] = make([]byte, 4<<10)
    			}
    		}()
    	}
    	// Increase the chance that we end up starting and stopping
    	// mid-GC by only starting to trace after a few milliseconds.
    	time.Sleep(5 * time.Millisecond)
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    		log.Fatalf("failed to start tracing: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. cmd/kubelet/kubelet.go

    // It then communicates with the container runtime (or a CRI shim for the runtime) to see what is
    // currently running.  It synchronizes the configuration data, with the running set of containers
    // by starting or stopping containers.
    package main
    
    import (
    	"os"
    
    	"k8s.io/component-base/cli"
    	_ "k8s.io/component-base/logs/json/register"          // for JSON log format registration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 20:06:05 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/runtime/metrics/description.go

    		Kind:        KindFloat64Histogram,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/sched/pauses/stopping/gc:seconds",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/index.md

    This is in contrast to the **development** stages, where you are constantly changing the code, breaking it and fixing it, stopping and restarting the development server, etc.
    
    ## Deployment Strategies
    
    There are several ways to do it depending on your specific use case and the tools that you use.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

        private final StdinQueue stdinQueue;
        private final DisconnectQueue disconnectQueue;
        private final CancelQueue cancelQueue;
        private final ReceiveQueue receiveQueue;
        private volatile boolean stopping;
    
        public DefaultDaemonConnection(final SynchronizedDispatchConnection<Message> connection, ExecutorFactory executorFactory) {
            this.connection = connection;
            stdinQueue = new StdinQueue(executorFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableActionSet.java

     * limitations under the License.
     */
    package org.gradle.internal;
    
    import org.gradle.api.Action;
    
    /**
     * A mutable composite {@link Action}. Actions are executed in the order added, stopping on the first failure.
     *
     * This type is not thread-safe.
     *
     * Consider using {@link org.gradle.internal.ImmutableActionSet} instead of this.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    	// stop is called when a worker encounters a fatal error.
    	var fuzzErr error
    	stopping := false
    	stop := func(err error) {
    		if shouldPrintDebugInfo() {
    			_, file, line, ok := runtime.Caller(1)
    			if ok {
    				c.debugLogf("stop called at %s:%d. stopping: %t", file, line, stopping)
    			} else {
    				c.debugLogf("stop called at unknown. stopping: %t", stopping)
    			}
    		}
    
    		if err == fuzzCtx.Err() || isInterruptError(err) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. cmd/endpoint-ellipses.go

    					return layout, err
    				}
    			}
    		}
    
    		var stopping bool
    		var singleNode bool
    		var eps []string
    
    		for i := 0; ; i++ {
    			for _, node := range endpointsList {
    				if node.nodeName == "" {
    					singleNode = true
    				}
    
    				if len(node.disks) <= i {
    					stopping = true
    					continue
    				}
    				if stopping {
    					return layout, errors.New("number of disks per node does not match")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/plugin/plugin.go

    func NewRegistrationHandler(kubeClient kubernetes.Interface, getNode func() (*v1.Node, error)) *RegistrationHandler {
    	handler := &RegistrationHandler{}
    
    	// If kubelet ever gets an API for stopping registration handlers, then
    	// that would need to be hooked up with stopping the controller.
    	handler.controller = startNodeResourcesController(context.TODO(), kubeClient, getNode)
    
    	return handler
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 16:27:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top