- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for Style (0.79 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
} } public void test_getSingleNodeValue() throws Exception { final FessXpathTransformer transformer = new FessXpathTransformer(); String data = "<html><body>aaa<style>bbb</style>ccc</body></html>"; Document document = getDocument(data); String value = transformer.getSingleNodeValue(document, "//BODY", node -> node); assertEquals("aaa bbb ccc", value);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(imagePath); assertTrue(imagePath.toString().contains("images")); } public void test_getCssPath() { Path cssPath = ResourceUtil.getCssPath("style.css"); assertNotNull(cssPath); assertTrue(cssPath.toString().contains("css")); } public void test_getJavaScriptPath() { Path jsPath = ResourceUtil.getJavaScriptPath("script.js");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
return Collections.emptyList(); } catch (final Exception e) { throw new PluginException("Failed to access " + url, e); } } /** * Processes a Maven-style repository to extract artifacts of the specified type. * * @param artifactType the type of artifacts to process * @param url the URL of the repository * @return a list of artifacts found in the repository
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0)