Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for customize (0.14 sec)

  1. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

                }
            };
    
            // Set first customizer
            pagerCreator.setPagerCustomizer(customizer1);
            assertSame(customizer1, pagerCreator.getPagerCustomizer());
    
            // Replace with second customizer
            pagerCreator.setPagerCustomizer(customizer2);
            assertSame(customizer2, pagerCreator.getPagerCustomizer());
        }
    
        // Test setting null customizer
        public void test_setPagerCustomizer_null() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java

    import org.lastaflute.web.validation.Required;
    
    import jakarta.validation.constraints.Pattern;
    
    /**
     * Form for uploading design files to customize the appearance of the Fess search interface.
     * This form is used in the admin interface to upload CSS, JSP, and other design-related files
     * that customize the look and feel of the search application.
     */
    public class UploadForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

            viewHelper.getActionHook().godHandEpilogue(runtime, super::godHandEpilogue);
        }
    
        // #app_customize you can customize the action hook
        /**
         * Hook method called before action processing.
         * This method can be overridden by subclasses to customize behavior.
         *
         * @param runtime the action runtime context
         * @return the action response, or null to continue with normal processing
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

     * This form extends CreateForm to include fields necessary for updating existing request header entries,
     * including tracking information for optimistic locking and audit trails.
     * Request headers are used to customize HTTP requests sent during web crawling operations.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  5. docs/recipes.md

          fun run() {
            val request = Request.Builder()
                .url("http://httpbin.org/delay/1") // This URL is served with a 1 second delay.
                .build()
    
            // Copy to customize OkHttp for this request.
            val client1 = client.newBuilder()
                .readTimeout(500, TimeUnit.MILLISECONDS)
                .build()
            try {
              client1.newCall(request).execute().use { response ->
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         * Retrieves a list of access results from the data service for processing.
         * Filters out results that are too recent based on commit margin time and manages crawler throttling.
         *
         * @param cb the consumer to customize the search request
         * @param cleanupTime the time taken for the last cleanup operation
         * @return the list of access results ready for processing
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/validation/CustomSize.java

     */
    @Target({ METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER })
    @Retention(RUNTIME)
    @Documented
    @Constraint(validatedBy = CustomSizeValidator.class)
    public @interface CustomSize {
    
        /**
         * The error message when validation fails.
         * @return the error message
         */
        String message() default "{jakarta.validation.constraints.Size.message}";
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.32.md

    - Upgraded the functionality of `kubectl kustomize` as described at
      https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.4.2
      and https://github.com/kubernetes-sigs/kustomize/releases/tag/kustomize%2Fv5.5.0. ([#127965](https://github.com/kubernetes/kubernetes/pull/127965), [@koba1t](https://github.com/koba1t))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 14:49:49 UTC 2025
    - 412.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.34.md

    - k8s.io/system-validators: v1.9.1 → v1.10.1
    - k8s.io/utils: 3ea5e8c → 4c0f3b2
    - sigs.k8s.io/json: 9aa6b5e → cfa47c3
    - sigs.k8s.io/kustomize/api: v0.19.0 → v0.20.1
    - sigs.k8s.io/kustomize/cmd/config: v0.19.0 → v0.20.1
    - sigs.k8s.io/kustomize/kustomize/v5: v5.6.0 → v5.7.1
    - sigs.k8s.io/kustomize/kyaml: v0.19.0 → v0.20.1
    - sigs.k8s.io/yaml: v1.4.0 → v1.6.0
    
    ### Removed
    - cloud.google.com/go/accessapproval: v1.7.4
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            }
        }
    
        /**
         * Updates documents in an index using a query.
         *
         * @param index   the index name
         * @param option  function to customize the search request
         * @param builder function to build update requests from search hits
         * @return the number of documents processed
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top