Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 595 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. tests/integration/security/sds_ingress/util/util.go

    // RunTestMultiMtlsGateways deploys multiple mTLS gateways with SDS enabled, and creates kubernetes secret that stores
    // private key, server certificate and CA certificate for each mTLS gateway. Verifies that all gateways are able to terminate
    // mTLS connections successfully.
    func RunTestMultiMtlsGateways(ctx framework.TestContext, inst istio.Instance, ns namespace.Getter) { // nolint:interfacer
    	var credNames []string
    	var tests []TestConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controlplane/reconcilers/lease_test.go

    			return err
    		}
    	}
    	return nil
    }
    
    func TestLeaseEndpointReconciler(t *testing.T) {
    	server, sc := etcd3testing.NewUnsecuredEtcd3TestClientServer(t)
    	t.Cleanup(func() { server.Terminate(t) })
    
    	newFunc := func() runtime.Object { return &corev1.Endpoints{} }
    	newListFunc := func() runtime.Object { return &corev1.EndpointsList{} }
    	sc.Codec = apitesting.TestStorageCodec(codecs, corev1.SchemeGroupVersion)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    	"":         "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

            stopping = true;
            try {
                watcher.shutdown();
                if (!watcher.awaitTermination(5, TimeUnit.SECONDS)) {
                    throw new RuntimeException("Watcher did not terminate within 5 seconds");
                }
            } catch (InterruptedException e) {
                Thread.currentThread().interrupt();
                throw new InterruptedIOException("Awaiting termination of watcher was interrupted");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    // passed to Visit. An error will terminate the visit.
    type DecoratedVisitor struct {
    	visitor    Visitor
    	decorators []VisitorFunc
    }
    
    // NewDecoratedVisitor will create a visitor that invokes the provided visitor functions before
    // the user supplied visitor function is invoked, giving them the opportunity to mutate the Info
    // object or terminate early with an error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top