- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 116 for bulk_7 (0.03 seconds)
-
tests/create_test.go
*GetUser("bulk_4", Config{Account: true, Pets: 3, Toys: 0, Company: false, Manager: true, Team: 0, Languages: 3, Friends: 0}), *GetUser("bulk_5", Config{Account: false, Pets: 0, Toys: 3, Company: true, Manager: false, Team: 1, Languages: 3, Friends: 1}), *GetUser("bulk_6", Config{Account: true, Pets: 4, Toys: 3, Company: false, Manager: true, Team: 1, Languages: 3, Friends: 0}),Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Mon Jul 21 09:55:20 GMT 2025 - 26.8K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
Shinsuke Sugaya <******@****.***> 1730960360 +0900
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 07 06:19:20 GMT 2024 - 4.2K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_user.role/role.bulk
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 144 bytes - Click Count (0) -
src/main/resources/fess_indices/fess_user.user/user.bulk
Shinsuke Sugaya <******@****.***> 1673529806 +0900
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jan 12 13:23:26 GMT 2023 - 166 bytes - Click Count (0) -
MIGRATION.md
``` **Step 3: Import to Fess** Option A: Via Admin UI 1. Go to **System > Backup** 2. Upload `fess-documents.json` (bulk format) 3. Click **Import** Option B: Via Bulk API ```bash curl -X PUT "http://localhost:8080/api/admin/documents/bulk" \ -H "Content-Type: application/x-ndjson" \ -u admin:admin \ --data-binary @fess-documents.json ``` #### Index Settings Migration
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
} } /** * Gets the bulk buffer size for batch operations. * * @return The bulk buffer size. */ public int getBulkBufferSize() { return bulkBufferSize; } /** * Sets the bulk buffer size for batch operations. * * @param bulkBufferSize The bulk buffer size. */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 34.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
// /** * Performs bulk document operations (index multiple documents). * Validates document fields and adds default values where necessary. * * @param body the bulk request body containing documents to process * @return JSON response with bulk operation results */ // PUT /api/admin/documents/bulk @Execute public JsonResponse<ApiResult> put$bulk(final BulkBody body) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/BulkBody.java
import java.util.List; import java.util.Map; /** * Request body for bulk document operations containing a list of documents. */ public class BulkBody { /** * Creates a new instance of BulkBody. */ public BulkBody() { // Default constructor } /** * List of documents to be processed in bulk operations. */ public List<Map<String, Object>> documents;Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestIndexWriter.java
import org.codelibs.fess.suggest.settings.SuggestSettings; import org.codelibs.fess.suggest.util.SuggestUtil; import org.opensearch.action.bulk.BulkItemResponse; import org.opensearch.action.bulk.BulkRequestBuilder; import org.opensearch.action.bulk.BulkResponse; import org.opensearch.action.get.GetResponse; import org.opensearch.action.index.IndexAction; import org.opensearch.action.index.IndexRequest;
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Thu Nov 20 08:32:33 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
*/ public void setIndexTimeout(final String timeout) { this.indexTimeout = timeout; } /** * Sets the bulk timeout. * @param timeout The bulk timeout. */ public void setBulkTimeout(final String timeout) { this.bulkTimeout = timeout; } /** * Sets the indices timeout.Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 20.1K bytes - Click Count (0)