- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 291 for convertKey (0.07 seconds)
-
src/main/java/org/codelibs/core/net/URLUtil.java
} /** * Converts a string into <code>application/x-www-form-urlencoded</code> * format using the specified encoding scheme. * * @param s * The string to be converted. Must not be {@literal null} or empty. * @param enc * The encoding scheme. Must not be {@literal null} or empty. * @return The string encoded in <code>application/x-www-form-urlencoded</code> format.Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 6.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
InetAddresses.fromIPv4BigInteger(BigInteger.ONE.shiftLeft(32).add(BigInteger.ONE))); assertThat(expected) .hasMessageThat() .isEqualTo( "BigInteger cannot be converted to InetAddress because it has more than 4 bytes:" + " 4294967297"); } public void testFromIpv6BigIntegerInputTooLarge() { IllegalArgumentException expected = assertThrows(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 36.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/dependencies/classes-as-dependencies.md
- Un paramètre de requête `skip` qui est un `int`, avec une valeur par défaut de `0`. - Un paramètre de requête `limit` qui est un `int`, avec une valeur par défaut de `100`. Dans les deux cas, les données seront converties, validées, documentées dans le schéma OpenAPI, etc. ## Utiliser { #use-it } Vous pouvez maintenant déclarer votre dépendance en utilisant cette classe. {* ../../docs_src/dependencies/tutorial002_an_py310.py hl[19] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 7.5K bytes - Click Count (0) -
docs/en/docs/advanced/stream-data.md
{* ../../docs_src/stream_data/tutorial002_py310.py ln[1:27] hl[3,12:13,25] *} /// note | Technical Details The other two variables, `image_base64` and `binary_image`, are an image encoded in Base64, and then converted to bytes, to then pass it to `io.BytesIO`. Only so that it can live in the same file for this example and you can copy it and run it as is. 🥚 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 5.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/handling-errors.md
Vous pouvez passer un `dict`, une `list`, etc. Elles sont gérées automatiquement par **FastAPI** et converties en JSON. /// ## Ajouter des en-têtes personnalisés { #add-custom-headers }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
/** * Creates an EditBody from a DataConfig entity for API responses. * Handles permission and virtual host encoding. * * @param entity the DataConfig entity to convert * @return the converted EditBody object */ protected EditBody createEditBody(final DataConfig entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> { copyOp.excludeNull();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.5K bytes - Click Count (0) -
tensorflow/c/eager/c_api_unified_experimental.cc
TracingContext* tracing_ctx = dyn_cast<TracingContext>(unwrap(ctx)); if (!tracing_ctx) { tsl::Set_TF_Status_from_Status( s, tensorflow::errors::InvalidArgument( "Only TracingContext can be converted into a function.")); return nullptr; } tsl::Set_TF_Status_from_Status(s, tracing_ctx->Finalize(unwrap(outputs), &func)); TF_DeleteExecutionContext(ctx);
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
} } @Test public void test_execute_verifyQueryToString() { // Execute the job purgeDocJob.execute(); // Verify the query can be converted to string (for logging) assertNotNull(deleteQuery); String queryString = deleteQuery.toString(); assertNotNull(queryString); assertTrue(queryString.contains("expires")); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
docs/pt/docs/advanced/events.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
/** * Creates an EditBody from a StemmerOverrideItem entity for API responses. * * @param entity the StemmerOverrideItem entity to convert * @param dictId the dictionary ID * @return the converted EditBody object */ protected EditBody createEditBody(final StemmerOverrideItem entity, final String dictId) { final EditBody body = new EditBody(); body.id = entity.getId();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.8K bytes - Click Count (0)