- Sort Score
- Num 10 results
- Language All
Results 2201 - 2210 of 4,168 for get (0.03 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
private String determineTargetModelVersion(UpgradeContext context) { UpgradeOptions options = getOptions(context); if (options.modelVersion().isPresent()) { return options.modelVersion().get(); } else if (options.all().orElse(false)) { return MODEL_VERSION_4_1_0; } else { return MODEL_VERSION_4_0_0; } } /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 16.6K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
throw new RuntimeException(e); } } // Utility: reflectively get a private/protected field (searches up the hierarchy) private static Object getField(Object target, String name) { try { Field f = findField(target.getClass(), name); f.setAccessible(true); return f.get(target); } catch (Exception e) { throw new RuntimeException(e); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.6K bytes - Click Count (0) -
docs/ja/docs/tutorial/server-sent-events.md
これをヘッダーパラメータとして受け取り、クライアントが離脱した位置からストリームを再開できます: {* ../../docs_src/server_sent_events/tutorial004_py310.py hl[25,27,31] *} ## POST での SSE { #sse-with-post } SSE は `GET` だけでなく、**任意の HTTP メソッド**で動作します。 これは、`POST` 上で SSE をストリーミングする [MCP](https://modelcontextprotocol.io) のようなプロトコルで有用です: {* ../../docs_src/server_sent_events/tutorial005_py310.py hl[14] *} ## 技術詳細 { #technical-details }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:55:22 GMT 2026 - 5.8K bytes - Click Count (0) -
cmd/utils_test.go
t.Fatal(err) } // Look for expected method. if res.Method != http.MethodGet { t.Fatalf("Unexpected method %s, expected 'GET'", res.Method) } // Look for expected query values expectedQuery := url.Values{} expectedQuery.Set("prefix", "Hello*World*") expectedQuery.Set("X-Amz-Algorithm", "AWS4-HMAC-SHA256")
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 10.2K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
public int getBatchLimit(final String cmd) { Integer set = this.batchLimits.get(cmd); if (set != null) { return set; } set = doGetBatchLimit(cmd); if (set != null) { this.batchLimits.put(cmd, set); return set; } set = DEFAULT_BATCH_LIMITS.get(cmd); if (set != null) { return set; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 29.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
validate(form, messages -> {}, this::asDictIndexHtml); pageNumber.ifPresent(num -> { charMappingPager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { charMappingPager.setCurrentPageNumber(0); }); return asHtml(path_AdminDictMapping_AdminDictMappingJsp).renderWith(data -> { searchPaging(data, form);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 22.3K bytes - Click Count (0) -
tensorflow/c/eager/immediate_execution_context.h
virtual ImmediateExecutionTensorHandle* TFTensorHandleFromInterface( ImmediateExecutionTensorHandle* handle) = 0; virtual std::vector<std::string> GetLoggedOpsTestonly() { return {}; } // Get a list of the names of functions that have been registered. virtual std::vector<string> ListFunctionNames() = 0; struct CacheStats { int64_t kernel_cache_size; int64_t device_cache_size;
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 12.3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.6.md
* Add Version to the resource printer for 'get nodes' ([#37943](https://github.com/kubernetes/kubernetes/pull/37943), [@ailusazh](https://github.com/ailusazh)) * Added support for printing in all supported `--output` formats to `kubectl create ...` and `kubectl apply ...` ([#38112](https://github.com/kubernetes/kubernetes/pull/38112), [@juanvallejo](https://github.com/juanvallejo))
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Dec 24 02:28:26 GMT 2020 - 304K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Doubles.java
* * <p>The returned list maintains the values, but not the identities, of {@code Double} objects * written to or read from it. For example, whether {@code list.get(0) == list.get(0)} is true for * the returned list is unspecified. * * <p>The returned list may have unexpected behavior if it contains {@code NaN}, or if {@code NaN} * is used as a parameter to any of its methods.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 27.8K bytes - Click Count (0)