Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 420 for died (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/net/http/cgi/host.go

    		// And kill the child CGI process so we don't hang on
    		// the deferred cmd.Wait above if the error was just
    		// the client (rw) going away. If it was a read error
    		// (because the child died itself), then the extra
    		// kill of an already-dead process is harmless (the PID
    		// won't be reused until the Wait above).
    		cmd.Process.Kill()
    	}
    }
    
    func (h *Handler) printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            then:
            execHandle.state == ExecHandleState.SUCCEEDED
        }
    
        @Ignore //not yet implemented
        //it may not be easily testable
        void "detach detects when process did not start or died prematurely"() {
            def execHandle = handle().args(args(BrokenApp.class)).build()
    
            when:
            execHandle.start()
            def detachResult = execHandle.detach()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                connector.markDaemonAsUnavailable(connection.getDaemon());
                throw new DaemonInitialConnectException("The first result from the daemon was empty. The daemon process may have died or a non-daemon process is reusing the same port.");
            }
    
            LOGGER.debug("Received result {} from daemon {} (build should be starting).", result, connection.getDaemon());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		return nil
    	}
    	// If we are more than timeout seconds after the lease duration that is past the timeout
    	// on the lease renew. Time to start reporting ourselves as unhealthy. We should have
    	// died but conditions like deadlock can prevent this. (See #70819)
    	if le.clock.Since(le.observedTime) > le.config.LeaseDuration+maxTolerableExpiredLease {
    		return fmt.Errorf("failed election to renew leadership on lease %s", le.config.Name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{161, "ENOKEY", "required key not available"},
    	{162, "EKEYEXPIRED", "key has expired"},
    	{163, "EKEYREVOKED", "key has been revoked"},
    	{164, "EKEYREJECTED", "key was rejected by service"},
    	{165, "EOWNERDEAD", "owner died"},
    	{166, "ENOTRECOVERABLE", "state not recoverable"},
    	{167, "ERFKILL", "operation not possible due to RF-kill"},
    	{168, "EHWPOISON", "memory page has hardware error"},
    	{1133, "EDQUOT", "disk quota exceeded"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	{161, "ENOKEY", "required key not available"},
    	{162, "EKEYEXPIRED", "key has expired"},
    	{163, "EKEYREVOKED", "key has been revoked"},
    	{164, "EKEYREJECTED", "key was rejected by service"},
    	{165, "EOWNERDEAD", "owner died"},
    	{166, "ENOTRECOVERABLE", "state not recoverable"},
    	{167, "ERFKILL", "operation not possible due to RF-kill"},
    	{168, "EHWPOISON", "memory page has hardware error"},
    	{1133, "EDQUOT", "disk quota exceeded"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top