- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 128 for extracted (0.07 seconds)
-
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
this.userPrefix = userPrefix; } /** * Extracts role type information from SMB (Server Message Block) response data. * Processes both SMB and SMB1 protocols to extract allowed and denied SIDs. * * @param responseData the response data containing SMB metadata * @return a list of role type strings extracted from the SMB permissions */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 15.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/FacetResponseTest.java
public void test_field_name_extraction() { // Test that field names can be extracted from encoded strings String originalFieldName = "author"; String encodedFieldName = BaseEncoding.base64().encode(originalFieldName.getBytes(StandardCharsets.UTF_8)); String fullFieldName = Constants.FACET_FIELD_PREFIX + encodedFieldName; // Extract the encoded part
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
* @return the detected intent with extracted keywords */ IntentDetectionResult detectIntent(String userMessage); /** * Detects the intent of a user message with conversation history context. * * @param userMessage the user's message * @param history the conversation history for context * @return the detected intent with extracted keywords */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
it.value.isNotEmpty() } ?: emptyMap() /** * Returns any temporary directories used to extract resources from jars. * * These directories will be created as siblings of the randomly assigned test root directories, with the fixed name {@code tmp-extracted-resources}. */ private
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
fastapi/security/http.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 16 10:16:48 GMT 2026 - 13.1K bytes - Click Count (0) -
docs/en/docs/advanced/using-request-directly.md
/// tip Note that in this case, we are declaring a path parameter beside the request parameter. So, the path parameter will be extracted, validated, converted to the specified type and annotated with OpenAPI. The same way, you can declare any other parameter as normally, and additionally, get the `Request` too. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.3K bytes - Click Count (0) -
.github/workflows/maven.yml
shell: bash run: ls -la maven-dist - name: Extract Maven distribution shell: bash run: | mkdir -p maven-local if [ "${{ runner.os }}" = "Windows" ]; then unzip maven-dist/apache-maven-*-bin.zip -d maven-local # Get the name of the extracted directory MAVEN_DIR=$(ls maven-local) # Move contents up one levelCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Mar 24 08:21:28 GMT 2026 - 12.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
} /** * Get the extracted data. * @param extractor The extractor. * @param in The input stream. * @param params The parameters. * @return The extracted data. */ protected ExtractData getExtractData(final Extractor extractor, final InputStream in, final Map<String, String> params) { try { return extractor.getText(in, params);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} resultData.setEncoding(charsetName); } /** * Normalizes the extracted data, particularly handling title normalization. * * @param responseData the response data from crawling * @param dataMap the data map containing extracted field values */ protected void normalizeData(final ResponseData responseData, final Map<String, Object> dataMap) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
* cancelled. * * <p>If the combiningCallable throws an {@code ExecutionException}, the cause of the thrown * {@code ExecutionException} will be extracted and used as the failure of the derived step. */ public final <V extends @Nullable Object> ClosingFuture<V> call( CombiningCallable<V> combiningCallable, Executor executor) { Callable<V> callable =Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 101.7K bytes - Click Count (0)