Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for TERMINATE (0.12 sec)

  1. pkg/kubelet/pod_workers_test.go

    		t.Errorf("Not all pods processed: %v", len(processed))
    		return
    	}
    	for i := 0; i < numPods; i++ {
    		uid := types.UID(strconv.Itoa(i))
    		// each pod should be processed two or three times (kill,terminate or create,kill,terminate) because
    		// we buffer pending updates and the pod worker may compress the create and kill
    		syncPodRecords := processed[uid]
    		var match bool
    		grace := int64(30)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				// This is probably a user error, but there is no reason we should block mTLS traffic
    				// we just will not terminate it
    				ClusterMatched: "inbound|70||",
    			},
    			Permissive: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    			Strict: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.SeparateCacheWatchRPC, tc.separateCacheWatchRPC)
    			_, cacher, _, terminate := testSetupWithEtcdServer(t)
    			t.Cleanup(terminate)
    
    			if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    				if err := cacher.ready.wait(context.TODO()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// SyncTerminatingRuntimePod is invoked when running containers are found that correspond to
    	// a pod that is no longer known to the kubelet to terminate those containers. It should not
    	// exit without error unless all containers are known to be stopped.
    	SyncTerminatingRuntimePod(ctx context.Context, runningPod *kubecontainer.Pod) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    		if wd := testTimeout / 10; wd < 5*time.Second {
    			testWaitDelay = 5 * time.Second
    		} else {
    			testWaitDelay = wd
    		}
    
    		// We expect the test binary to terminate itself (and dump stacks) after
    		// exactly testTimeout. We give it up to one WaitDelay or one minute,
    		// whichever is longer, to finish dumping stacks before we send it an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    	UseVendorAll bool
    
    	// AllowErrors indicates that LoadPackages should not terminate the process if
    	// an error occurs.
    	AllowErrors bool
    
    	// SilencePackageErrors indicates that LoadPackages should not print errors
    	// that occur while matching or loading packages, and should not terminate the
    	// process if such an error occurs.
    	//
    	// Errors encountered in the module graph will still be reported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types.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.
    // DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.
    type Ingress struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  8. src/regexp/testdata/testregex.c

    {
    	char*	msg;
    	char	buf[256];
    
    	switch (code)
    	{
    	case REG_EBUS:
    		msg = "bus error";
    		break;
    	case REG_EFAULT:
    		msg = "memory fault";
    		break;
    	case REG_EHUNG:
    		msg = "did not terminate";
    		break;
    	default:
    		regerror(code, preg, msg = buf, sizeof buf);
    		break;
    	}
    	printf("%s\n", msg);
    }
    
    static void
    bad(char* comment, char* re, char* s, int len, unsigned long test)
    {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    // NewProxier returns a new nftables Proxier. Once a proxier is created, it will keep
    // nftables up to date in the background and will not terminate if a particular nftables
    // call fails.
    func NewProxier(ctx context.Context,
    	ipFamily v1.IPFamily,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    	masqueradeAll bool,
    	masqueradeBit int,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.WatchListPageSize = storageWatchListPageSize
    	// When etcd loses leader for 3 cycles, it returns error "no leader".
    	// We don't want to terminate all watchers as recreating all watchers puts high load on api-server.
    	// In most of the cases, leader is reelected within few cycles.
    	reflector.MaxInternalErrorRetryDuration = time.Second * 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top