- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 321 for convertKey (0.08 seconds)
-
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
public WildcardQueryCommand() { super(); } private static final Logger logger = LogManager.getLogger(WildcardQueryCommand.class); /** * Flag indicating whether wildcard terms should be converted to lowercase. */ protected boolean lowercaseWildcard = true; @Override protected String getQueryClassName() { return WildcardQuery.class.getSimpleName(); } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.request.suggest; import org.codelibs.fess.suggest.converter.ReadingConverter; import org.codelibs.fess.suggest.normalizer.Normalizer; import org.codelibs.fess.suggest.request.RequestBuilder; import org.opensearch.transport.client.Client; /**
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 4.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaConverter.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.converter; import java.io.IOException; import java.io.Reader; import java.io.StringReader; import java.util.ArrayList; import java.util.List; import org.apache.lucene.analysis.TokenStream;
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Fri Jul 04 14:00:23 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
} /** * Converts to the appropriate {@link Number}. * * @param type * Target type * @param o * Source object * @return {@link Number} converted to {@literal type} */ public static Object convertNumber(final Class<?> type, final Object o) { if (type == Integer.class) { return IntegerConversionUtil.toInteger(o);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 5.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
} @Test public void test_convertCrawlingPath_s3_not_converted() { // S3 paths should be returned as-is, not converted String s3Path = "s3://my-bucket/path/to/object"; assertEquals(s3Path, wizardAction.convertCrawlingPath(s3Path)); // Verify it's not being converted to file: protocol assertFalse(wizardAction.convertCrawlingPath(s3Path).startsWith("file:")); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
docs/pt/docs/how-to/custom-request-and-route.md
Isso é um recurso "avançado". Se você for um iniciante em **FastAPI** você deve considerar pular essa seção. /// ## Casos de Uso { #use-cases } Alguns casos de uso incluem: * Converter requisições não-JSON para JSON (por exemplo, [`msgpack`](https://msgpack.org/index.html)). * Descomprimir corpos de requisição comprimidos com gzip. * Registrar automaticamente todos os corpos de requisição.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 4.9K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/NullPointerTester.java
T defaultType = (T) getFirstTypeParameter(type.getType()); return defaultType; } if (type.getRawType() == Converter.class) { TypeToken<?> convertFromType = type.resolveType(Converter.class.getTypeParameters()[0]); TypeToken<?> convertToType = type.resolveType(Converter.class.getTypeParameters()[1]); @SuppressWarnings("unchecked") // returns default for both F and T
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 25.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
// Test creating default reading converter ReadingConverter converter = SuggestUtil.createDefaultReadingConverter(client, settings); assertNotNull(converter); } @Test public void testCreateDefaultContentsReadingConverter() { // Test creating default contents reading converter ReadingConverter converter = SuggestUtil.createDefaultContentsReadingConverter(client, settings);Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 26.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/RenderDataUtil.java
} /** * Registers a value in the render data with the specified key. * If the value is an Entity object, it will be converted to a Map using BeanUtil. * If the value is a Collection containing Entity objects, each Entity will be converted to a Map. * For other types of values, they are registered directly. * * @param data the RenderData object to register the value inCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
samples/tlssurvey/build.gradle.kts
dependencies { implementation(projects.okhttp) implementation(projects.okhttpCoroutines) implementation(libs.conscrypt.openjdk) implementation(libs.square.retrofit) implementation(libs.square.retrofit.converter.moshi) implementation(libs.square.moshi) implementation(libs.square.moshi.kotlin) ksp(libs.square.moshi.compiler) } tasks.compileJava { options.isWarnings = falseCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 636 bytes - Click Count (0)