- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 660 for Reload (0.56 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java
import jakarta.validation.constraints.Size; /** * Form for plugin installation through the admin web interface. * This class represents the form data structure for installing a plugin * via file upload through the admin UI. */ public class InstallForm { /** Plugin identifier (required, max 400 characters) */ @Required @Size(max = 400) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading search request files to the Fess search engine. * This form is used in the admin interface to upload search request configuration files * that define search behaviors and request handling. */ public class UploadForm { /** * The multipart file containing the search request configurations to be uploaded.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
.github/workflows/test.yml
env: COVERAGE_FILE: coverage/.coverage.${{ runner.os }}-py${{ matrix.python-version }} CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }} - name: Store coverage files uses: actions/upload-artifact@v4 with: name: coverage-${{ matrix.python-version }}-${{ matrix.pydantic-version }} path: coverage include-hidden-files: true coverage-combine: needs: [test]
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
testData.add(createRelatedContent("test", "Test Content", "")); mockBhv.setTestData(testData); relatedContentHelper.init(); // Verify that load was called and data is processed String[] results = relatedContentHelper.getRelatedContents("test"); assertEquals(1, results.length); assertEquals("Test Content", results[0]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
docs/bucket/notifications/README.md
```py python rabbit.py ``` Open another terminal and upload a JPEG image into `images` bucket. ``` mc cp myphoto.jpg myminio/images ``` You should receive the following event notification via RabbitMQ once the upload completes. ```py python rabbit.py
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 84.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
* Uploads synonym dictionary file. * * @param dictId the dictionary ID * @param form the upload form containing the dictionary file * @return JSON response with result status */ // PUT /api/admin/dict/synonym/upload/{dictId} @Execute public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) { form.dictId = dictId; validateApi(form, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
/** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /** * The multipart file containing the elevate word configurations to be uploaded.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
* * @param dictId the dictionary ID * @param form the upload form containing the dictionary file * @return JSON response with result status */ // PUT /api/admin/dict/stemmerOverride/upload/{dictId} @Execute public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) { form.dictId = dictId; validateApi(form, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
.github/workflows/containers.yml
permissions: contents: read env: GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false" jobs: test_containers: permissions: checks: write # for actions/upload-artifact runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'containers') steps: - name: Checkout uses: actions/checkout@v5
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 07:15:58 UTC 2025 - 872 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/UploadForm.java
/** * Form for uploading character mapping files to the Fess search engine. * Character mapping allows for normalization and transformation of characters during text analysis. * This form is used in the admin interface to upload custom character mapping dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which character mapping dictionary configuration to update.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0)