Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,123 for Terminated (0.18 sec)

  1. releasenotes/notes/startupProbe.yaml

          the entire pod's lifecycle.
          On average, this improves pod startup time by roughly 1s.
          
          If the startup probe does not pass after 10 minutes, the pod will be terminated.
          Previously, the pod would never be terminated even if it was unable to start indefinitely.
          
          If you do not want this feature, it can be disabled. However, you will want to tune the readiness probe with it.
          
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. src/syscall/syscall.go

    }
    
    // StringBytePtr returns a pointer to a NUL-terminated array of bytes.
    // If s contains a NUL byte this function panics instead of returning
    // an error.
    //
    // Deprecated: Use [BytePtrFromString] instead.
    func StringBytePtr(s string) *byte { return &StringByteSlice(s)[0] }
    
    // BytePtrFromString returns a pointer to a NUL-terminated array of
    // bytes containing the text of s. If s contains a NUL byte at any
    // location, it returns (nil, [EINVAL]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    				"running": {Terminated: &v1.ContainerStateTerminated{
    					ExitCode:    1,
    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/syscall.go

    // holds a value of type syscall.ErrorString.
    package plan9 // import "golang.org/x/sys/plan9"
    
    import (
    	"bytes"
    	"strings"
    	"unsafe"
    )
    
    // ByteSliceFromString returns a NUL-terminated slice of bytes
    // containing the text of s. If s contains a NUL byte at any
    // location, it returns (nil, EINVAL).
    func ByteSliceFromString(s string) ([]byte, error) {
    	if strings.IndexByte(s, 0) != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/AbstractIdleServiceTest.java

        TestService service = new TestService();
        service.stopAsync().awaitTerminated();
        assertEquals(0, service.startUpCalled);
        assertEquals(0, service.shutDownCalled);
        assertEquals(Service.State.TERMINATED, service.state());
        assertThat(service.transitionStates).isEmpty();
      }
    
      public void testStop_afterStart() {
        TestService service = new TestService();
        service.startAsync().awaitRunning();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		if _, found := filteredInfos[c]; !found {
    			t.Errorf("%q is expected to be in the output\n", c)
    		}
    	}
    
    	expectedInfoKeys := []string{"pod0-i-terminated-1", "pod0-c0-terminated-1", "pod0-i-terminated-2", "pod0-c0-terminated-2", "pod0-i", "pod0-c0"}
    	// NOTE: on Windows, IsSystemdStyleName will return false, which means that the Container Info will
    	// not be assembled by cgroup key.
    	if runtime.GOOS != "windows" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. pkg/config/validation/header_value_validator.go

    				return errors.New("invalid header configuration. Expecting '%' or whitespace after")
    			}
    		}
    
    		pos++
    	}
    
    	if state != LiteralParserState {
    		// Parsing terminated mid-variable.
    		return fmt.Errorf("invalid header configuration. Un-terminated variable expression '%s'", headerValue)
    	}
    
    	return nil
    }
    
    func isSpace(chr byte) bool {
    	return chr == ' '
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 15 21:37:52 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. src/internal/testenv/exec.go

    			// expires) and the process being forcibly terminated (via the WaitDelay
    			// field), and a second one for the delay between the process being
    			// terminated and the test logging its output for debugging.
    			//
    			// (We want to ensure that the test process itself has enough time to
    			// log the output before it is also terminated.)
    			cmdTimeout := testTimeout - 2*gracePeriod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall.go

    // holds a value of type syscall.Errno.
    package windows // import "golang.org/x/sys/windows"
    
    import (
    	"bytes"
    	"strings"
    	"syscall"
    	"unsafe"
    )
    
    // ByteSliceFromString returns a NUL-terminated slice of bytes
    // containing the text of s. If s contains a NUL byte at any
    // location, it returns (nil, syscall.EINVAL).
    func ByteSliceFromString(s string) ([]byte, error) {
    	if strings.IndexByte(s, 0) != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top