Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 446 for Terminate (0.15 sec)

  1. pkg/controlplane/instance_test.go

    func TestLegacyRestStorageStrategies(t *testing.T) {
    	_, etcdserver, apiserverCfg, _ := newInstance(t)
    	defer etcdserver.Terminate(t)
    
    	storageProvider, err := corerest.New(corerest.Config{
    		GenericConfig: *apiserverCfg.ControlPlane.NewCoreGenericConfig(),
    		Proxy: corerest.ProxyConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease_test.go

    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.StorageVersionAPI, true)
    
    	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: Wed Apr 24 18:25:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

                        return TypeVisitResult.TERMINATE;
                    }
                }
                Type genericSuperclass = type.getGenericSuperclass();
                if (collectTypeParameters(genericSuperclass, foundType, collectedTypes, typeArgumentIndex)) {
                    return TypeVisitResult.TERMINATE;
                }
                return TypeVisitResult.CONTINUE;
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/model.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	gatewayAliasForAnnotationKey = "gateway.istio.io/alias-for"
    	gatewayTLSTerminateModeKey   = "gateway.istio.io/tls-terminate-mode"
    	gatewayNameOverride          = "gateway.istio.io/name-override"
    	gatewaySAOverride            = "gateway.istio.io/service-account"
    	serviceTypeOverride          = "networking.istio.io/service-type"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. 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
       * @return {@code true} if the {@code ExecutorService} was terminated successfully, {@code false}
       *     if the call timed out or was interrupted
       * @since 28.0
       */
      @CanIgnoreReturnValue
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top