Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for Terminate (0.55 sec)

  1. 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)
  2. pkg/kubelet/pod_workers.go

    	gracePeriod int64
    	// notifyPostTerminating will be closed once the pod transitions to
    	// terminated. After the pod is in terminated state, nothing should be
    	// added to this list.
    	notifyPostTerminating []chan<- struct{}
    	// statusPostTerminating is a list of the status changes associated
    	// with kill pod requests. After the pod is in terminated state, nothing
    	// should be added to this list. The worker will execute the last function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// Cancel the watch after some time to check if it will properly
    	// terminate instead of hanging forever.
    	go func() {
    		defer cancel()
    		cacher.clock.Sleep(1 * time.Second)
    	}()
    
    	// Watch hangs waiting on watchcache being initialized.
    	// Ensure that it terminates when its context is cancelled
    	// (e.g. the request is terminated for whatever reason).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K 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

    	// Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,2,opt,name=replicas"`
    
    	// Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    	// +optional
    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. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
            },
            "deletionGracePeriodSeconds": {
              "description": "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.",
              "type": "integer",
              "format": "int64"
            },
            "deletionTimestamp": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. 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)
Back to top