Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 288 for border (0.03 sec)

  1. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         * For example, if you specify an underscore as the delimiter for JavaBeans and a period as the delimiter for {@link Map},
         * the property names for the source and destination will be as follows:
         * </p>
         * <table border="1">
         * <caption>Copied JavaBeans Properties</caption>
         * <tr>
         * <th>JavaBeans Property Name</th>
         * <th>{@literal Map} Property Name</th>
         * </tr>
         * <tr>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  2. src/main/webapp/js/search.js

            queryId = $("#queryId").val(),
            order = $(this).attr("data-order"),
            url = $(this).attr("href"),
            buf = [],
            hashIndex,
            hashStr;
        buf.push(contextPath);
        buf.push("/go/?rt=");
        buf.push(rt);
        buf.push("&docId=");
        buf.push(docId);
        buf.push("&queryId=");
        buf.push(queryId);
        buf.push("&order=");
        buf.push(order);
    
        hashIndex = url.indexOf("#");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

         * For example, if you specify an underscore as the delimiter for JavaBeans and a period as the delimiter for {@link Map},
         * the property names for the source and destination will be as follows:
         * </p>
         * <table border="1">
         * <caption>Copied JavaBeans Properties</caption>
         * <tr>
         * <th>JavaBeans Property Name</th>
         * <th>{@literal Map} Property Name</th>
         * </tr>
         * <tr>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

     * </p>
     * <p>
     * If no pattern is specified, the pattern used for conversion depends on the locale as follows:
     * </p>
     * <table border="1">
     * <caption>Conversion Patterns</caption>
     * <tr>
     * <th>Category</th>
     * <th>Pattern</th>
     * <th>Example for {@link Locale#JAPANESE}</th>
     * </tr>
     * <tr>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

     * For other types, the conversion uses the string representation of the source object.
     * </p>
     * <p>
     * If no pattern is specified, the pattern used for conversion depends on the locale as follows:
     * </p>
     * <table border="1">
     * <caption>Conversion Patterns</caption>
     * <tr>
     * <th>Category</th>
     * <th>Pattern</th>
     * <th>Example for {@link Locale#JAPANESE}</th>
     * </tr>
     * <tr>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

     * </p>
     * <p>
     * If no pattern is specified, the pattern used for conversion depends on the locale as follows:
     * </p>
     * <table border="1">
     * <caption>Conversion Patterns</caption>
     * <tr>
     * <th>Category</th>
     * <th>Pattern</th>
     * <th>Example for {@link Locale#JAPANESE}</th>
     * </tr>
     * <tr>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/CopyUtil.java

    import org.codelibs.core.nio.ChannelUtil;
    
    /**
     * Utility for copying.
     * <p>
     * The combinations of input and output types and the unit of elements copied are as follows:
     * </p>
     * <table border="1">
     * <caption>Elements for copying instances</caption>
     * <tr>
     * <th rowspan="2">Input type</th>
     * <th colspan="4">Output type</th>
     * </tr>
     * <tr>
     * <th>{@link OutputStream}</th>
     * <th>{@link Writer}</th>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            BucketOrder order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(true), order);
        }
    
        // Test getBucketOrder with only key type (no order)
        public void test_getBucketOrder_onlyKeyType() {
            facetInfo.sort = "key";
            BucketOrder order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(true), order);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableMultimap.java

     *
     * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all
     * current implementations, the iteration order always keeps multiple entries with the same key
     * together. Any creation method that would customarily respect insertion order (such as {@link
     * #copyOf(Multimap)}) instead preserves key-grouped order by inserting entries for an existing key
     * immediately after the last entry having that key.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 28.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            scoreUpdater.addScoreBooster(booster2);
            scoreUpdater.addScoreBooster(booster3);
    
            // Clear execution order before test
            PriorityTrackingBooster.clearExecutionOrder();
    
            scoreUpdater.execute();
    
            // Boosters should be executed in priority order (3, 2, 1)
            List<Integer> executionOrder = PriorityTrackingBooster.getExecutionOrder();
            assertEquals(3, executionOrder.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top