- Sort Score
- Num 10 results
- Language All
Results 481 - 490 of 852 for onOutput (0.24 seconds)
-
docs/tr/docs/async.md
Ardından, 🤖 ilk biten görevi alır (örneğin bizim "slow-file" 📝) ve onunla yapması gerekenlere devam eder. Bu "başka bir şeyi beklemek" genelde işlemci ve RAM hızına kıyasla nispeten "yavaş" olan <abbr title="Input and Output - Giriş ve Çıkış">I/O</abbr> işlemlerine atıfta bulunur, örneğin şunları beklemek gibi: * istemciden verinin ağ üzerinden gelmesi * programınızın gönderdiği verinin ağ üzerinden istemciye ulaşması
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 23.7K bytes - Click Count (0) -
.teamcity/scripts/FindCommits.java
* - Uses origin/<target_branch_name> as the target * - If HEAD is a merge commit and one parent equals the target SHA, the other parent is treated as PR head * - Otherwise HEAD itself is treated as PR head * * Output: * - Writes commit SHAs to stdout, one per line * - Diagnostic info to stderr */ public class FindCommits { public static void main(String[] args) throws Exception { if (args.length != 1) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 5.5K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/EclipseConventionPlugin.java
eclipseModel.getClasspath().getFile().whenMerged(c -> { Classpath classpath = (Classpath) c; /* * give each source folder a unique corresponding output folder * outside of the usual `build` folder. We can't put the build * in the usual build folder because eclipse becomes *very* sad
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 01 09:43:51 GMT 2021 - 6.4K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/HashFunction.java
* that no character encoding is performed; the low byte and high byte of each {@code char} are * hashed directly (in that order). * * <p><b>Warning:</b> This method will produce different output than most other languages do when * running the same hash function on the equivalent input. For cross-language compatibility, use * {@link #hashString}, usually with a charset of UTF-8. For other use cases, use {@codeCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 17 20:26:29 GMT 2025 - 10.9K bytes - Click Count (0) -
ci/official/utilities/code_check_full.bats
"@local_config_tensorrt//:tensorrt)" --keep_going > $BATS_TEST_TMPDIR/out cat <<EOF There was a path found connecting //tensorflow/tools/pip_package:wheel to a banned CUDA dependency. Here's the output from bazel query: EOF cat $BATS_TEST_TMPDIR/out [[ ! -s $BATS_TEST_TMPDIR/out ]] } @test "Pip package doesn't depend on CUDA for static builds (i.e. Windows)" { bazel cquery \
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 28 22:41:17 GMT 2026 - 13.6K bytes - Click Count (0) -
tensorflow/c/c_api_test.cc
// Convert back to a C++ Tensor and ensure we get expected output. Tensor output; ASSERT_EQ(absl::OkStatus(), TF_TensorToTensor(dst, &output)) << line; ASSERT_EQ(src.NumElements(), output.NumElements()) << line; for (int64_t i = 0; i < src.NumElements(); ++i) { ASSERT_EQ(data[i], output.flat<tstring>()(i)) << line; } TF_DeleteTensor(dst); } }Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 07 04:56:09 GMT 2026 - 97.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/StandardTable.java
private Map<R, V> removeColumn(@Nullable Object column) { Map<R, V> output = new LinkedHashMap<>(); Iterator<Entry<R, Map<C, V>>> iterator = backingMap.entrySet().iterator(); while (iterator.hasNext()) { Entry<R, Map<C, V>> entry = iterator.next(); V value = entry.getValue().remove(column); if (value != null) { output.put(entry.getKey(), value); if (entry.getValue().isEmpty()) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 29.4K bytes - Click Count (0) -
docs/zh-hant/docs/_llm-test.md
* 檢查翻譯是否正確。 * 如有需要,改進你的語言特定提示、通用提示,或英文原文。 * 然後手動修正翻譯中剩下的問題,讓它成為一個好的譯文。 * 重新翻譯,並保留這份好的譯文。理想結果是 LLM 不再對該譯文做任何變更。這代表通用提示與你的語言特定提示已經盡可能完善(有時它仍可能做出幾個看似隨機的變更,原因是[LLMs 並非決定性演算法](https://doublespeak.chat/#/handbook#deterministic-output))。 測試: ## 程式碼片段 { #code-snippets } //// tab | 測試 這是一個程式碼片段:`foo`。這是另一個程式碼片段:`bar`。還有一個:`baz quux`。 //// //// tab | 資訊 程式碼片段內的內容應保持原樣。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrDomainHandleTest.java
assertEquals(access, capturedRpc.access_mask); assertEquals(mockSid, capturedRpc.sid); assertEquals(handle, capturedRpc.domain_handle); // Ensure the handle itself is passed for output } @Test void constructor_shouldThrowSmbExceptionOnRpcError() throws IOException { // Arrange int access = 0x01;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComLockingAndXTest.java
copy.readParameterWordsWireFormat(buf, 0); assertTrue((boolean) getField(copy, "largeFile")); } /** * Test toString covers basic output. */ @Test void toStringInclusion() { Configuration cfg = mock(Configuration.class); SmbComLockingAndX cmd = new SmbComLockingAndX(cfg); setField(cmd, "fid", 42);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.1K bytes - Click Count (0)