- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 34 for stacktrace (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
assertThrows(CancellationException.class, () -> CallerClass2.get(future)); List<StackTraceElement> stackTrace = ImmutableList.copyOf(expected.getStackTrace()); assertFalse(Iterables.any(stackTrace, hasClassName(CallerClass1.class))); assertTrue(Iterables.any(stackTrace, hasClassName(CallerClass2.class))); // See AbstractFutureCancellationCauseTest for how to set causes.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
assertThrows(CancellationException.class, () -> CallerClass2.get(future)); List<StackTraceElement> stackTrace = ImmutableList.copyOf(expected.getStackTrace()); assertFalse(Iterables.any(stackTrace, hasClassName(CallerClass1.class))); assertTrue(Iterables.any(stackTrace, hasClassName(CallerClass2.class))); // See AbstractFutureCancellationCauseTest for how to set causes.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
.bazelrc
common:clang_local --noincompatible_enable_android_toolchain_resolution common:clang_local --@rules_ml_toolchain//common:enable_hermetic_cc=False common:clang_local --repo_env USE_HERMETIC_CC_TOOLCHAIN=0 # Print a stacktrace when a test is killed test --test_env="GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1" # Default options should come above this line. # Enable bzlmod common:bzlmod --enable_bzlmod --noenable_workspace
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Mar 28 04:33:01 GMT 2026 - 58.9K bytes - Click Count (0) -
tensorflow/c/c_api_function.cc
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; for (const Node* n : fn_body->graph.nodes()) { stack_traces[n->name()] = n->GetStackTrace(); } TF_Function* tf_function = new TF_Function();
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 16:27:48 GMT 2024 - 13.7K bytes - Click Count (0) -
tensorflow/c/c_api_function_test.cc
} TEST_F(CApiFunctionTest, TFGraphToFunctionWithStackTraces) { DefineFunction(func_name_, &func_); auto stack_traces = func_->record->stack_traces(); EXPECT_EQ(stack_traces.size(), 4); EXPECT_EQ(stack_traces["neg"]->ToString({}), kNegStackToString); EXPECT_EQ(stack_traces["feed"]->ToString({}), kFeedStackToString); } TEST_F(CApiFunctionTest, TFGraphCopyFunctionWithStackTraces) {Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 07 04:56:09 GMT 2026 - 63.9K bytes - Click Count (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:Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 04 23:31:17 GMT 2024 - 3.3K bytes - Click Count (0) -
tensorflow/c/eager/c_api_experimental.cc
"Unable to find function with name: ", function_name); return; } tensorflow::GraphDebugInfo debug_info = tensorflow::StackTracesMapToGraphDebugInfo( function_record->stack_traces()); string str = debug_info.SerializeAsString(); void* data = tensorflow::port::Malloc(str.length()); str.copy(static_cast<char*>(data), str.length(), 0); buf->data = data; buf->length = str.length();Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 35.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} protected void postCommands(C context) throws Exception { Logger logger = context.logger; if (context.options().showErrors().orElse(false)) { logger.info("Error stacktraces are turned on."); } if (context.options().verbose().orElse(false)) { logger.debug("Message scheme: " + (MessageUtils.isColorEnabled() ? "color" : "plain"));Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Oct 28 13:01:07 GMT 2025 - 43.2K bytes - Click Count (0) -
tensorflow/c/eager/c_api.cc
return; } AnnotateEagerRuntimeConstructionContext(*fdef_or.value()); status->status = tensorflow::unwrap(ctx)->AddFunctionDefWithStackTraces( *fdef_or.value(), function->record->stack_traces()); } TF_Function* TFE_ContextGetFunction(TFE_Context* ctx, const char* name, TF_Status* status) { tensorflow::core::RefCountPtr<tensorflow::FunctionRecord> record =
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Nov 07 05:55:21 GMT 2025 - 43.9K bytes - Click Count (0) -
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())) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0)