Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 591 for related (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/CreateBody.java

     */
    package org.codelibs.fess.app.web.api.admin.relatedquery;
    
    import org.codelibs.fess.app.web.admin.relatedquery.CreateForm;
    
    /**
     * Request body for creating related query via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1015 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                    FessHtmlPath.path_AdminDictStemmeroverride_AdminDictStemmeroverrideJsp.getRoutingPath());
        }
    
        public void test_searchRelatedPaths() throws Exception {
            // Test search-related paths
            assertEquals("/search.jsp", FessHtmlPath.path_SearchJsp.getRoutingPath());
            assertEquals("/searchNoResult.jsp", FessHtmlPath.path_SearchNoResultJsp.getRoutingPath());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

    package org.codelibs.fess.app.web.cache;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.lastaflute.web.validation.Required;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for cache-related operations.
     * Contains parameters for document caching and error page display.
     */
    public class CacheForm {
    
        /** Document ID for cache operations. */
        @Required
        @Size(max = 100)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/Lockable.kt

    import kotlin.contracts.InvocationKind
    import kotlin.contracts.contract
    import okhttp3.internal.assertionsEnabled
    
    /**
     * Marker interface for objects that use the JVM's `synchronized` mechanism and the related
     * `wait()` and `notify()` functions.
     *
     * The Lockable interface is particularly handy because it ensures we lock the right `this` when
     * there are multiple `this` objects in scope.
     */
    interface Lockable
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/design/UploadForm.java

    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 {
    
        /**
         * The multipart file containing design resources to be uploaded.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import org.jspecify.annotations.NullMarked;
    
    /**
     * Generators of different types of map and related collections, such as keys, entries and values.
     *
     * @author Hayward Chan
     */
    @GwtCompatible
    @NullMarked
    public class MapGenerators {
      public static class ImmutableMapGenerator extends TestStringMapGenerator {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.convert;
    
    /**
     * Utility class for conversions related to {@link Boolean}.
     *
     * @author higa
     */
    public abstract class BooleanConversionUtil {
    
        /**
         * Do not instantiate.
         */
        protected BooleanConversionUtil() {
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

     * graph. The following test cases are left for the subclasses to handle:
     *
     * <ul>
     *   <li>Test cases related to whether the graph is directed, undirected, mutable, or immutable.
     *   <li>Test cases related to the specific implementation of the {@link Network} interface.
     * </ul>
     *
     * TODO(user): Make this class generic (using <N, E>) for all node and edge types.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Supplier.java

     * this could be a factory, generator, builder, closure, or something else entirely. No guarantees
     * are implied by this interface.
     *
     * <p>The {@link Suppliers} class provides common suppliers and related utilities.
     *
     * <p>As this interface extends {@code java.util.function.Supplier}, an instance of this type can be
     * used as a {@code java.util.function.Supplier} directly. To use a {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jun 19 17:20:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java

     */
    package org.codelibs.core.convert;
    
    import java.text.SimpleDateFormat;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.text.DecimalFormatUtil;
    
    /**
     * Utility class for conversions related to {@link Integer}.
     *
     * @author higa
     */
    public abstract class IntegerConversionUtil {
    
        /**
         * Do not instantiate.
         */
        protected IntegerConversionUtil() {
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.2K bytes
    - Viewed (0)
Back to top