Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,040 for exit2 (0.12 sec)

  1. android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java

     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UncaughtExceptionHandlers {
      private UncaughtExceptionHandlers() {}
    
      /**
       * Returns an exception handler that exits the system. This is particularly useful for the main
       * thread, which may start up other, non-daemon threads, but fail to fully initialize the
       * application successfully.
       *
       * <p>Example usage:
       *
       * <pre>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. hack/verify-gofmt.sh

            -o -wholename '*/third_party/*' \
            -o -wholename '*/vendor/*' \
            -o -wholename '*/testdata/*' \
            -o -wholename '*/bindata.go' \
          \) -prune \
        \) -name '*.go'
    }
    
    # gofmt exits with non-zero exit code if it finds a problem unrelated to
    # formatting (e.g., a file does not parse correctly). Without "|| true" this
    # would have led to no useful error message from gofmt, because the script would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

                .ok());
        exits[i] = ops::internal::Exit(root.WithOpName(absl::StrCat("exit_", i)),
                                       iv.output);
      }
    
      FixupSourceAndSinkEdges(root.graph());
    
      {
        PredicateMapTy predicate_map;
        TF_ASSERT_OK(ComputePredicates(*root.graph(), &predicate_map));
    
        EXPECT_NE(predicate_map[ControlOutputFor(exits[0])],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/base/tool.go

    // If the tool cannot be found, Tool exits the process.
    func Tool(toolName string) string {
    	toolPath, err := ToolPath(toolName)
    	if err != nil && len(cfg.BuildToolexec) == 0 {
    		// Give a nice message if there is no tool with that name.
    		fmt.Fprintf(os.Stderr, "go: no such tool %q\n", toolName)
    		SetExitStatus(2)
    		Exit()
    	}
    	return toolPath
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:04:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. hack/lib/logging.sh

        [[ -z ${1-} ]] || {
          echo "  ${1}" >&2
        }
    
        kube::log::stack ${stack_skip}
    
        echo "Exiting with status ${code}" >&2
      fi
    
      exit "${code}"
    }
    
    # Log an error but keep going.  Don't dump the stack or exit.
    kube::log::error() {
      timestamp=$(date +"[%m%d %H:%M:%S]")
      echo "!!! ${timestamp} ${1-}" >&2
      shift
      for message; do
        echo "    ${message}" >&2
      done
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "exit hint does not mention enter when not on windows"() {
            when:
            file("a").touch()
            buildScript "task a { inputs.file 'a'; outputs.file 'b'; doLast {} }"
    
            then:
            succeeds "a"
            output.endsWith("(ctrl-d to exit)\n")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "exit hint mentions enter when on windows"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

        EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
    
    // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
    
    // Tests that an exit code describes a normal exit with a given exit code.
    class GTEST_API_ ExitedWithCode {
     public:
      explicit ExitedWithCode(int exit_code);
      bool operator()(int exit_status) const;
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

        EXPECT_EXIT(statement, ::testing::internal::ExitedUnsuccessfully, regex)
    
    // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
    
    // Tests that an exit code describes a normal exit with a given exit code.
    class GTEST_API_ ExitedWithCode {
     public:
      explicit ExitedWithCode(int exit_code);
      bool operator()(int exit_status) const;
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. pkg/envoy/agent.go

    }
    
    // Run starts the envoy and waits until it terminates.
    // There are a few exit paths:
    //  1. Envoy exits. In this case, we simply log and exit.
    //  2. /quitquitquit (on agent, not Envoy) is called. We will set skipDrain and cancel the context, which triggers us to exit immediately.
    //  3. SIGTERM. We will drain, wait termination drain duration, then exit. This is the standard pod shutdown; SIGTERM arrives when pod shutdown starts.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. src/runtime/os_aix.go

    	)
    
    	if pthread_attr_init(&attr) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	if pthread_attr_setstacksize(&attr, threadStackSize) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	if pthread_attr_setdetachstate(&attr, _PTHREAD_CREATE_DETACHED) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	// Disable signals during create, so that the new thread starts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top