Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 480 for Terminate (0.2 sec)

  1. pkg/registry/core/pod/storage/eviction_test.go

    			podPhase:    api.PodRunning,
    			podName:     "t1",
    			policies:    []*policyv1.UnhealthyPodEvictionPolicyType{nil, unhealthyPolicyPtr(policyv1.IfHealthyBudget)}, // AlwaysAllow would terminate the pod since Running pods are not guarded by this policy
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod pending",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    rights granted under Section 2(b) shall terminate as of the date such
    litigation is filed.
    
    All Recipient's rights under this Agreement shall terminate if it
    fails to comply with any of the material terms or conditions of this
    Agreement and does not cure such failure in a reasonable period of
    time after becoming aware of such noncompliance. If all Recipient's
    rights under this Agreement terminate, Recipient agrees to cease use
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server.go

    					logger.Info("Sync completed")
    				}
    				sched.Run(ctx)
    			},
    			OnStoppedLeading: func() {
    				select {
    				case <-ctx.Done():
    					// We were asked to terminate. Exit 0.
    					logger.Info("Requested to terminate, exiting")
    					os.Exit(0)
    				default:
    					// We lost the lock.
    					logger.Error(nil, "Leaderelection lost")
    					klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    				}
    			},
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control.go

    	// completes before we continue to make progress.
    	if isTerminating(replicas[i]) && monotonic {
    		logger.V(4).Info("StatefulSet is waiting for Pod to Terminate",
    			"statefulSet", klog.KObj(set), "pod", klog.KObj(replicas[i]))
    		return true, nil
    	}
    
    	// If we have a Pod that has been created but is not running and ready we can not make progress.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	remaining []byte
    }
    
    // NewJSONFramedReader returns an io.Reader that will decode individual JSON objects off
    // of a wire.
    //
    // The boundaries between each frame are valid JSON objects. A JSON parsing error will terminate
    // the read.
    func NewJSONFramedReader(r io.ReadCloser) io.ReadCloser {
    	return &jsonFrameReader{
    		r:       r,
    		decoder: json.NewDecoder(r),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    		return server, storage
    	}
    	server, etcdStorage := newEtcdTestStorage(t, "")
    	defer server.Terminate(t)
    	versioner := storage.APIObjectVersioner{}
    
    	makePod := func(name string) *example.Pod {
    		return &example.Pod{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: name},
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    	if podWorkers.CouldHaveRunningContainers(types.UID("0")) {
    		t.Errorf("Expected pod to be terminated (deleted and terminated)")
    	}
    	if podWorkers.CouldHaveRunningContainers(types.UID("1")) {
    		t.Errorf("Expected pod to be terminated")
    	}
    	if !podWorkers.CouldHaveRunningContainers(types.UID("2")) {
    		t.Errorf("Expected pod to not be terminated")
    	}
    
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("0")) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/options.go

    	// a port number is automatically chosen.
    	// If the address is empty, the secure port is disabled, and the
    	// webhooks are registered on the HTTP port - a gateway in front will
    	// terminate TLS instead.
    	HTTPSAddr string
    
    	// The listening address for gRPC. If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	GRPCAddr string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *
       * @param service the {@code ExecutorService} to shut down
       * @param timeout the maximum time to wait for the {@code ExecutorService} to terminate
       * @param unit the time unit of the timeout argument
       * @return {@code true} if the {@code ExecutorService} was terminated successfully, {@code false}
       *     if the call timed out or was interrupted
       * @since 17.0
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. pkg/filewatcher/worker.go

    	return result
    }
    
    // used only by the worker goroutine
    func retireTracker(ft *fileTracker) {
    	close(ft.events)
    	close(ft.errors)
    	ft.events = nil
    	ft.errors = nil
    }
    
    func (wk *worker) terminate() {
    	wk.terminateCh <- true
    }
    
    func (wk *worker) addPath(path string) error {
    	wk.mu.Lock()
    
    	ft := wk.watchedFiles[path]
    	if ft != nil {
    		wk.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top