Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 367 for exit_a (0.11 sec)

  1. releasenotes/notes/duplicated-extra-stats-tag.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 31270
    releaseNotes:
    - |
      **Fixed** an issue where envoy does not start up properly when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 16 16:30:56 UTC 2021
    - 203 bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/UncaughtExceptionHandlersTest.java

    import com.google.common.util.concurrent.UncaughtExceptionHandlers.Exiter;
    import junit.framework.TestCase;
    
    /** @author Gregory Kick */
    public class UncaughtExceptionHandlersTest extends TestCase {
    
      private Runtime runtimeMock;
    
      @Override
      protected void setUp() {
        runtimeMock = mock(Runtime.class);
      }
    
      public void testExiter() {
        new Exiter(runtimeMock).uncaughtException(new Thread(), new Exception());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. src/internal/abi/rangefuncconsts.go

    // For best code generation, RF_DONE and RF_READY should be 0 and 1.
    const (
    	RF_DONE          = RF_State(iota) // body of loop has exited in a non-panic way
    	RF_READY                          // body of loop has not exited yet, is not running  -- this is not a panic index
    	RF_PANIC                          // body of loop is either currently running, or has panicked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:04:30 UTC 2024
    - 940 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcess.java

        ExecResult waitForStop();
    
        /**
         * Returns the result of the process, if it has exited.  If the process has not exited yet, returns {@link Optional#empty()}.
         */
        Optional<ExecResult> getExecResult();
    
        JvmMemoryStatus getJvmMemoryStatus();
    
        /**
         * Stop the associated process without expecting a normal exit value.
         */
        void stopNow();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered_test.go

    	}()
    
    	// Wait for some time and then check whether Shutdown has exited. Can give false positive,
    	// but never false negative.
    	time.Sleep(100 * time.Millisecond)
    	select {
    	case <-shutdownEndCh:
    		t.Fatalf("Shutdown exited before delegated call ended")
    	default:
    	}
    
    	// Wait for Shutdown to exit after delegated call has exited.
    	close(delegatedCallEndCh)
    	<-shutdownEndCh
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 14 17:20:35 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  6. pkg/probe/exec/exec_test.go

    	return nil, nil
    }
    
    type fakeExitError struct {
    	exited     bool
    	statusCode int
    }
    
    func (f *fakeExitError) String() string {
    	return f.Error()
    }
    
    func (f *fakeExitError) Error() string {
    	return "fake exit"
    }
    
    func (f *fakeExitError) Exited() bool {
    	return f.exited
    }
    
    func (f *fakeExitError) ExitStatus() int {
    	return f.statusCode
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. docs/docker/README.md

    ```sh
    docker ps -a
    ```
    
    `-a` flag makes sure you get all the containers (Created, Running, Exited). Then identify the `Container ID` from the output.
    
    ### Starting and Stopping Containers
    
    To start a stopped container, you can use the [`docker start`](https://docs.docker.com/engine/reference/commandline/start/) command.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  8. src/runtime/race/testdata/cgo_test.go

    func TestNoRaceCgoSync(t *testing.T) {
    	cmd := exec.Command(testenv.GoToolPath(t), "run", "-race", "cgo_test_main.go")
    	cmd.Stdout = os.Stdout
    	cmd.Stderr = os.Stderr
    	if err := cmd.Run(); err != nil {
    		t.Fatalf("program exited with error: %v\n", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 22:49:11 UTC 2016
    - 497 bytes
    - Viewed (0)
  9. cmd/kubeadm/test/cmd/token_test.go

    		with a non-zero status code after showing the command's usage, so that
    		the usage itself isn't captured as a token without the user noticing.
    	*/
    	kubeadmPath := getKubeadmPath()
    	_, _, _, err := RunCmd(kubeadmPath, "token", "genorate") // subtle typo
    	if err == nil {
    		t.Error("'kubeadm token genorate' (a deliberate typo) exited without an error when we expected non-zero exit status")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 21:47:16 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  10. misc/go_android_exec/main.go

    		fmt.Fprintf(&exitReStr, "%s$|", exitStr[:i])
    	}
    	// Finally, match the exit string along with an exit code.
    	// This is the only case we use a group, and we'll use this
    	// group to extract the numeric code.
    	fmt.Fprintf(&exitReStr, "%s([0-9]+)$", exitStr)
    	exitRe := regexp.MustCompile(exitReStr.String())
    
    	return &exitCodeFilter{w: w, exitRe: exitRe}, exitStr
    }
    
    func (f *exitCodeFilter) Write(data []byte) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top