Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for stackFrames (0.21 sec)

  1. .github/ISSUE_TEMPLATE/00-bug.yml

      - type: textarea
        id: actual-behavior
        attributes:
          label: "What did you see happen?"
          description: Command invocations and their associated output, functions with their arguments and return results, full stacktraces for panics (upload a file if it is very long), etc. Prefer copying text output over using screenshots.
        validations:
          required: true
    
      - type: textarea
        id: expected-behavior
        attributes:
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_function.cc

          output_tensors, output_names_vec, control_output_nodes,
          control_output_names_vec, description, &fdef);
      if (TF_GetCode(status) != TF_OK) {
        return nullptr;
      }
    
      // Dump the op creation stacktraces for debugging purpose.
      DEBUG_DATA_DUMPER()->DumpOpCreationStackTraces(
          fn_name, kDebugGroupOpStacktrace, "initial", &fn_body->graph);
    
      tensorflow::StackTracesMap stack_traces;
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 16:27:48 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

      TF_Operation* feed = Placeholder(func_graph.get(), s.get());
      TF_Operation* neg = Neg(feed, func_graph.get(), s.get());
    
      std::vector<StackFrame> feed_frames = {{"feed.cc", 10, "alpha"}};
      std::vector<StackFrame> neg_frames = {{"neg.cc", 15, "beta"}};
      feed->node.SetStackTrace(std::make_shared<FrozenStackTrace>(feed_frames));
      neg->node.SetStackTrace(std::make_shared<FrozenStackTrace>(neg_frames));
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            R invokerRequest = context.invokerRequest;
            Logger logger = context.logger;
            if (invokerRequest.options().showErrors().orElse(false)) {
                logger.info("Error stacktraces are turned on.");
            }
            if (context.invokerRequest.options().verbose().orElse(false)) {
                logger.debug("Message scheme: " + (MessageUtils.isColorEnabled() ? "color" : "plain"));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
  5. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                System.out.println(CLIReportingUtils.showVersion());
            }
        }
    
        private void commands(CliRequest cliRequest) {
            if (cliRequest.showErrors) {
                slf4jLogger.info("Error stacktraces are turned on.");
            }
    
            if (MavenExecutionRequest.CHECKSUM_POLICY_WARN.equals(cliRequest.request.getGlobalChecksumPolicy())) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.10.md

    * remove spaces from kubectl describe hpa ([#56331](https://github.com/kubernetes/kubernetes/pull/56331), [@shiywang](https://github.com/shiywang))
    
    * fluentd-es addon: multiline stacktraces are now grouped into one entry automatically ([#58063](https://github.com/kubernetes/kubernetes/pull/58063), [@monotek](https://github.com/monotek))
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top