- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for Formatter (0.06 sec)
-
pom.xml
<plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>2.26.0</version> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> <configuration> <configFile>https://www.codelibs.org/assets/formatter/eclipse-formatter-1.1.xml</configFile> </configuration>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 03:01:32 UTC 2025 - 4.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
* * <ul> * <li>{@code padStart("7", 3, '0')} returns {@code "007"} * <li>{@code padStart("2010", 3, '0')} returns {@code "2010"} * </ul> * * <p>See {@link java.util.Formatter} for a richer set of formatting capabilities. * * @param string the string which should appear at the end of the result * @param minLength the minimum length the resulting string must have. Can be zero or negative, in
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
pom.xml
</configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.github.hazendaz.maven</groupId> <artifactId>yuicompressor-maven-plugin</artifactId> <executions> <execution>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
README.md
6. **Push** to the branch: `git push origin feature/amazing-feature` 7. **Submit** a Pull Request with detailed description ### Code Standards - Follow the project's Eclipse formatter configuration - Add Apache License 2.0 headers to new files: `mvn license:format` - Maintain comprehensive JavaDoc documentation - Write thorough unit tests with good coverage
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
return null; } } /** * Formats a Date object to ISO datetime string format in UTC timezone. * * @param date the date to format * @return formatted date string, or empty string if date is null */ public static String formatDate(final Date date) { if (date == null) { return StringUtil.EMPTY; }
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/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
} /** * Creates an EditBody from a RelatedQuery entity for API responses. * * @param entity the RelatedQuery entity to convert * @return EditBody containing the entity data formatted for editing */ protected EditBody createEditBody(final RelatedQuery entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> { copyOp.excludeNull();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
String result = buf.toString(); assertTrue(result.startsWith("\"timestamp\":\"")); assertTrue(result.endsWith("\"")); // Verify a timestamp was properly formatted assertNotNull(result); assertTrue(result.length() > "\"timestamp\":\"\"".length()); } // Test appendException method with simple exception
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
/** * Builds the complete query string from the configured parameters. * Combines base query, extra queries, field filters, and sort field into a single query string. * * @return the complete formatted query string */ public String build() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final int maxQueryLength = fessConfig.getQueryMaxLengthAsInteger();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
assertNull(searchRenderData.getExecTime()); // Test with empty string searchRenderData.setExecTime(""); assertEquals("", searchRenderData.getExecTime()); // Test with formatted time string searchRenderData.setExecTime("0.123 sec"); assertEquals("0.123 sec", searchRenderData.getExecTime()); } public void test_setAndGetPageSize() { // Test with zero
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
logger.warn("Failed to access log files.", e); } } } /** * Gets host information including hostname and IP address. * * @return formatted string containing hostname and IP address */ protected String getHostInfo() { final StringBuilder buf = new StringBuilder(); try { final InetAddress ia = InetAddress.getLocalHost();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0)