Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,054 for died (0.11 sec)

  1. cni/pkg/repair/repair_test_helpers.go

    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    		},
    	}
    
    	brokenInitContainerTerminating = corev1.ContainerStatus{
    		Name: constants.ValidationContainerName,
    		State: corev1.ContainerState{
    			Terminated: &corev1.ContainerStateTerminated{
    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    				Message:  "Died for some reason",
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. cni/pkg/repair/repair_test.go

    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			workingPod,
    			false,
    		},
    		{
    			"Testing working pod (that previously died) with only ExitCode check",
    			config.RepairConfig{
    				SidecarAnnotation: "sidecar.istio.io/status",
    				InitContainerName: constants.ValidationContainerName,
    				InitExitCode:      126,
    			},
    			workingPodDiedPreviously,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    dead we take increased devotion to that cause for which they gave the last full measure of devotion - that we here highly resolve that these dead shall not have died in vain - that this nation, under God, shall have a new birth of freedom - and that government of the people, by the people, for the people, shall not perish from this earth. Abraham Lincoln, November 19, 1863, Gettysburg, Pennsylvania Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  4. src/compress/testdata/gettysburg.txt

    dead we take increased devotion to that cause for which they
    gave the last full measure of devotion -
      that we here highly resolve that these dead shall not have
    died in vain - that this nation, under God, shall have a new
    birth of freedom - and that government of the people, by the
    people, for the people, shall not perish from this earth.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/lockosthread.go

    	return
    ok:
    	println("OK")
    }
    
    func LockOSThreadAvoidsStatePropagation() {
    	// This test is similar to LockOSThreadAlt in that it will detect if a thread
    	// which should have died is still running. However, rather than do this with
    	// thread IDs, it does this by unsharing state on that thread. This way, it
    	// also detects whether new threads were cloned from the dead thread, and not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/WorkerAction.java

        }
    
        @Override
        public void endStream() {
            // This happens when the connection between the worker and the build daemon is closed for some reason,
            // possibly because the build daemon died unexpectedly.
            stop();
        }
    
        @Override
        public void runThenStop(Request request) {
            try {
                run(request);
            } finally {
                stop();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/internal/trace/testtrace/validation.go

    			if v.seenSync && old == trace.GoUndetermined {
    				e.Errorf("undetermined goroutine %d after first global sync", id)
    			}
    			if new == trace.GoNotExist && v.hasAnyRange(trace.MakeResourceID(id)) {
    				e.Errorf("goroutine %d died with active ranges", id)
    			}
    			state, ok := v.gs[id]
    			if ok {
    				if old != state.state {
    					e.Errorf("bad old state for goroutine %d: got %s, want %s", id, old, state.state)
    				}
    				state.state = new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. src/syscall/tables_wasip1.go

    	ENOTSUP:         "Not supported",
    	ENOTTY:          "Not a typewriter",
    	ENXIO:           "No such device or address",
    	EOVERFLOW:       "Value too large for defined data type",
    	EOWNERDEAD:      "Owner died",
    	EPERM:           "Operation not permitted",
    	EPIPE:           "Broken pipe",
    	EPROTO:          "Protocol error",
    	EPROTONOSUPPORT: "Unknown protocol",
    	EPROTOTYPE:      "Protocol wrong type for socket",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/syscall/zerrors_windows.go

    	EOPNOTSUPP - APPLICATION_ERROR:      "operation not supported",
    	EOVERFLOW - APPLICATION_ERROR:       "value too large for defined data type",
    	EOWNERDEAD - APPLICATION_ERROR:      "owner died",
    	EPERM - APPLICATION_ERROR:           "operation not permitted",
    	EPFNOSUPPORT - APPLICATION_ERROR:    "protocol family not supported",
    	EPIPE - APPLICATION_ERROR:           "broken pipe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  10. src/syscall/exec_freebsd.go

    		pgrp            _C_int
    		cred            *Credential
    		ngroups, groups uintptr
    		upid            uintptr
    	)
    
    	rlim := origRlimitNofile.Load()
    
    	// Record parent PID so child can test if it has died.
    	ppid, _, _ := RawSyscall(SYS_GETPID, 0, 0, 0)
    
    	// guard against side effects of shuffling fds below.
    	// Make sure that nextfd is beyond any currently open files so
    	// that we can't run the risk of overwriting any of them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top