Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 295 for existing (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing file crawling configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing file config entries,
     * including tracking information for optimistic locking and audit trails.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/keymatch/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing key match configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing key match entries,
     * including tracking information for optimistic locking and audit trails.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/webconfig/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing web crawling configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing web config entries,
     * including tracking information for optimistic locking and audit trails.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing path mapping.
         *
         * @param form the edit form containing the path mapping ID and data
         * @return HTML response for the path mapping edit form
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/BiMap.java

       *     #forcePut} instead.
       */
      @CanIgnoreReturnValue
      @Override
      @Nullable V put(@ParametricNullness K key, @ParametricNullness V value);
    
      /**
       * An alternate form of {@code put} that silently removes any existing entry with the value {@code
       * value} before proceeding with the {@link #put} operation. If the bimap previously contained the
       * provided key-value mapping, this method has no effect.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            // Add existing file type query
            facetQueryView.addQuery("existing_pdf", "filetype:pdf");
            facetQueryView.addQuery("label1", "filetype:html");
    
            facetQueryView.init();
    
            Map<String, String> queryMap = facetQueryView.getQueryMap();
    
            // Should not duplicate existing pdf query
            assertEquals("filetype:pdf", queryMap.get("existing_pdf"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  7. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt

         */
        @JvmStatic
        @JvmName("enqueue")
        fun Call.enqueueEventSource(listener: EventSourceListener): EventSource = RealEventSource(this, listener).also(this::enqueue)
    
        /**
         * Processes the existing response with [listener].
         */
        @JvmStatic
        @JvmName("process")
        fun Response.processEventSource(listener: EventSourceListener) = RealEventSource(this, listener).processResponse(this)
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/ForwardingFluentFuture.java

     * <h3>Extension</h3>
     *
     * If you want a class like {@code FluentFuture} but with extra methods, we recommend declaring your
     * own subclass of {@link ListenableFuture}, complete with a method like {@link #from} to adapt an
     * existing {@code ListenableFuture}, implemented atop a {@link ForwardingListenableFuture} that
     * forwards to that future and adds the desired methods.
     */
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

            }
            return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(true).status(ApiResult.Status.OK).result());
        }
    
        /**
         * Updates an existing user setting.
         *
         * @param body the user data to update
         * @return JSON response containing the updated user setting ID
         */
        // PUT /api/admin/user/setting
        @Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/QueryProcessor.java

                chain = appendFilterChain(element, chain);
            }
            filterChain = chain;
        }
    
        /**
         * Appends a filter to an existing filter chain.
         *
         * @param filter the filter to append
         * @param chain the existing filter chain to append to
         * @return a new filter chain that includes the appended filter
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top