Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 347 for exit_1 (0.14 sec)

  1. pkg/kube/krt/leak_test.go

    package krt
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 788 bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/providers/citadel/leak_test.go

    package citadel
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 792 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testsanitizers/msan_test.go

    			cmd := hangProneCmd(outPath)
    			if tc.wantErr {
    				out, err := cmd.CombinedOutput()
    				if err != nil {
    					return
    				}
    				t.Fatalf("%#q exited without error; want MSAN failure\n%s", strings.Join(cmd.Args, " "), out)
    			}
    			mustRun(t, cmd)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/logging/DaemonMessages.java

        public final static String ABOUT_TO_START_RELAYING_LOGS = "About to start relaying all logs to the client via the connection.";
        public final static String DAEMON_VM_SHUTTING_DOWN = "Daemon vm is shutting down... The daemon has exited normally or was terminated in response to a user interrupt.";
        public final static String REMOVING_PRESENCE_DUE_TO_STOP = "Stop requested. Daemon is removing its presence from the registry...";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
         * Aborts the process, blocking until the process has exited. Does nothing if the process has already completed.
         */
        void abort();
    
        /**
         * Waits for the process to finish. Returns immediately if the process has already completed.
         *
         * @return result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/helpers_test.go

    		description string
    	}{
    		{
    			status: &kubecontainer.Status{
    				State:    kubecontainer.ContainerStateExited,
    				ExitCode: 1,
    			},
    			isFailed:    true,
    			description: "Init container in exited state and non-zero exit code should return true",
    		},
    		{
    			status: &kubecontainer.Status{
    				State: kubecontainer.ContainerStateUnknown,
    			},
    			isFailed:    true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

            this.args.addAll(args as List)
            return this
        }
    
        ExecOutput build() {
            def result = run()
            if (result.exitCode != 0) {
                throw new AssertionError("Swift PM exited with non-zero exit code. Output:\n${result.out}")
            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

            proc.waitForFinish()
        }
    
        void outputContainsKilledWorkerWarning() {
            if (OperatingSystem.current().windows) {
                outputContains(" exited unexpectedly with exit code 1.")
            } else {
                outputContains(" exited unexpectedly after being killed with signal 9.  This is likely because an external process has killed the worker.")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/libfuzzer_test.go

    			outb, err := cmd.CombinedOutput()
    			out := string(outb)
    			if err == nil {
    				t.Fatalf("fuzzing succeeded unexpectedly; output:\n%s", out)
    			}
    			if !strings.Contains(out, tc.expectedError) {
    				t.Errorf("exited without expected error %q; got\n%s", tc.expectedError, out)
    			}
    		})
    	}
    }
    
    // libFuzzerSupported is a copy of the function internal/platform.FuzzInstrumented,
    // because the internal package can't be used here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.usertools/get_test_list.sh

    #
    # Usage: get_test_list.sh OUTPUT BAZEL_TEST_COMMAND...
    # Writes the list of tests that would be run from BAZEL_TEST_COMMAND to OUTPUT.
    # Hides all extra output and always exits with success for now.
    
    OUTPUT=$1
    shift
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top