- Sort Score
- Num 10 results
- Language All
Results 711 - 720 of 1,340 for key7 (0.3 seconds)
-
android/guava/src/com/google/common/collect/Interners.java
InternalEntry entry = map.getEntry(sample); if (entry != null) { Object canonical = entry.getKey(); if (canonical != null) { // only matters if weak/soft keys are used // The compiler would know this is safe if not for our use of raw types (see above). @SuppressWarnings("unchecked") E result = (E) canonical; return result;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMap.java
@Override protected boolean standardContainsKey(@Nullable Object key) { try { // any CCE or NPE will be caught @SuppressWarnings({"unchecked", "nullness"}) SortedMap<@Nullable Object, V> self = (SortedMap<@Nullable Object, V>) this; Object ceilingKey = self.tailMap(key).firstKey(); return unsafeCompare(comparator(), ceilingKey, key) == 0;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 12 16:28:01 GMT 2025 - 5.7K bytes - Click Count (0) -
docs/en/docs/tutorial/body-multiple-params.md
For example, extending the previous model, you could decide that you want to have another key `importance` in the same body, besides the `item` and `user`. If you declare it as is, because it is a singular value, **FastAPI** will assume that it is a query parameter. But you can instruct **FastAPI** to treat it as another body key using `Body`: {* ../../docs_src/body_multiple_params/tutorial003_an_py310.py hl[23] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
* * @param map the source map. * @param key the key to look up. * @return the map value, or {@code null} if not found or not a map. */ @SuppressWarnings("unchecked") protected Map<String, Object> getMapValue(final Map<String, Object> map, final String key) { final Object value = map.get(key); if (value instanceof Map) { return (Map<String, Object>) value;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
docs/es/llm-prompt.md
* string: string * bug: bug * docs: documentación (do not translate to "documentos") * cheat sheet: cheat sheet (do not translate to "chuleta") * key (as in key-value pair, dictionary key): clave * array (as in JSON array): array * API key: API key (do not translate to "clave API") * 100% test coverage: cobertura de tests del 100% * back and forth: de un lado a otro
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 5.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
} @Override public void registerNext(final org.lastaflute.job.key.LaJobKey triggeredJob) { } @Override public org.lastaflute.job.key.LaJobKey getJobKey() { return null; } @Override public OptionalThing<org.lastaflute.job.key.LaJobNote> getJobNote() { return OptionalThing.empty(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13K bytes - Click Count (0) -
schema/index.go
) if idx == -1 { idx = len(tag) } name = tag[0:idx] if name == "" { subName := field.Name const key = "COMPOSITE" if composite, found := settings[key]; found { if len(composite) == 0 || composite == key { err = fmt.Errorf( "the composite tag of %s.%s cannot be empty", field.Schema.Name, field.Name) return }Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Wed May 21 02:35:56 GMT 2025 - 3.8K bytes - Click Count (0) -
tests/test_orjson_response_class.py
warnings.simplefilter("ignore", FastAPIDeprecationWarning) app = FastAPI(default_response_class=ORJSONResponse) @app.get("/orjson_non_str_keys") def get_orjson_non_str_keys(): key = quoted_name(value="msg", quote=False) return {key: "Hello World", 1: 1} client = TestClient(app) def test_orjson_non_str_keys(): with warnings.catch_warnings(): warnings.simplefilter("ignore", FastAPIDeprecationWarning)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 22 16:34:59 GMT 2026 - 846 bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt
/** * Returns the tag attached with [type] as a key, or null if no tag is attached with that key. * * The tags on a call are seeded from the [request tags][Request.tag]. This set will grow if new * tags are computed. */ fun <T : Any> tag(type: KClass<T>): T? /** * Returns the tag attached with [type] as a key, or null if no tag is attached with that key. *
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 6.8K bytes - Click Count (0) -
README.md
- **Encryption Context**: Per-session encryption state management - **Key Derivation**: SMB3 KDF implementation with dialect-specific parameters - **Pre-Authentication Integrity**: SMB 3.1.1 PAI for preventing downgrade attacks - **Automatic Detection**: Encryption automatically enabled when servers require it - **Secure Key Management**: Proper key derivation and nonce generation ### Core Features
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 09:24:52 GMT 2025 - 6.2K bytes - Click Count (0)