Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Style (1.72 sec)

  1. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

        /**
         * Returns the pattern string for {@link DateFormat#SHORT} style using the default locale.
         *
         * @return the pattern string for {@link DateFormat#SHORT} style
         */
        public static String getShortPattern() {
            return getShortPattern(LocaleUtil.getDefault());
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#SHORT} style using the specified locale.
         *
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

        /**
         * Returns the pattern string for {@link DateFormat#SHORT} style in the default locale.
         *
         * @return the pattern string for {@link DateFormat#SHORT} style
         */
        public static String getShortPattern() {
            return getShortPattern(LocaleUtil.getDefault());
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#SHORT} style in the specified locale.
         *
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

        /**
         * Returns the pattern string for {@link DateFormat#SHORT} style in the default locale.
         *
         * @return the pattern string for {@link DateFormat#SHORT} style
         */
        public static String getShortPattern() {
            return getShortPattern(LocaleUtil.getDefault());
        }
    
        /**
         * Returns the pattern string for {@link DateFormat#SHORT} style in the specified locale.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         * <pre>
         * <span style="font-size: 130%; color: #553000">[Small Helper]</span>
         * o saveInfo() <span style="color: #3F7E5E">// save messages to session</span>
         * o write() <span style="color: #3F7E5E">// write text to specified file</span>
         * o copyBeanToBean() <span style="color: #3F7E5E">// copy bean to bean by BeanUtil</span>
         * o getServletContext() <span style="color: #3F7E5E">// get servlet context</span>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         *
         * @param prefix the line number prefix pattern
         * @param style the CSS class name for styling
         * @param mimetype the MIME type of the content (currently unused)
         * @param input the code content to format
         * @return HTML formatted code with line numbers and styling
         */
        public static String formatCode(final String prefix, final String style, final String mimetype, final String input) {
            if (input == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

                zos.putNextEntry(viewEntry);
                zos.write("<html>test</html>".getBytes());
                zos.closeEntry();
    
                // Add CSS file
                ZipEntry cssEntry = new ZipEntry("css/style.css");
                zos.putNextEntry(cssEntry);
                zos.write("body { color: red; }".getBytes());
                zos.closeEntry();
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionBean.java

    import org.dbflute.dbmeta.DBMeta;
    import org.dbflute.dbmeta.accessory.DerivedTypeHandler;
    import org.dbflute.jdbc.StatementConfig;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.twowaysql.style.BoundDateDisplayStyle;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.common.unit.TimeValue;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionBean.java

    import org.dbflute.dbmeta.DBMeta;
    import org.dbflute.dbmeta.accessory.DerivedTypeHandler;
    import org.dbflute.jdbc.StatementConfig;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.twowaysql.style.BoundDateDisplayStyle;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.common.unit.TimeValue;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      @GwtIncompatible // SerializableTester
      public void testIsEqualToNull_serialization() {
        checkSerialization(Predicates.equalTo(null));
      }
    
      /**
       * Tests for Predicates.instanceOf(x). TODO: Fix the comment style after fixing annotation
       * stripper to remove comments properly. Currently, all tests before the comments are removed as
       * well.
       */
      @GwtIncompatible // Predicates.instanceOf
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 32.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionBean.java

    import org.dbflute.dbmeta.DBMeta;
    import org.dbflute.dbmeta.accessory.DerivedTypeHandler;
    import org.dbflute.jdbc.StatementConfig;
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.twowaysql.style.BoundDateDisplayStyle;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.common.unit.TimeValue;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top