- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 358 for hFormat (0.05 sec)
-
src/main/java/org/codelibs/core/convert/FloatConversionUtil.java
return toFloat((String) o); } else if (o instanceof java.util.Date) { if (pattern != null) { return Float.valueOf(new SimpleDateFormat(pattern).format(o)); } return Float.valueOf(((java.util.Date) o).getTime()); } else { return toFloat(o.toString()); } } private static Float toFloat(final String s) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.zip; import static org.codelibs.core.log.Logger.format; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty; import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull; import java.io.File; import java.io.IOException;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
} return null; } return permission; } /** * Decodes a search role format string back to a permission string. * Reverses the encoding process to restore original permission format. * * @param value the encoded permission string to decode * @return the decoded permission string, or null if the input is blank or invalid */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/GcFinalization.java
// Hope to catch some stragglers queued up behind our finalizable object System.runFinalization(); } private static RuntimeException formatRuntimeException(String format, Object... args) { return new RuntimeException(String.format(Locale.ROOT, format, args)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 4.2K bytes - Viewed (1) -
src/main/resources/fess_indices/fess_log.search_log/search_log.json
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 25 13:38:21 UTC 2022 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.helper; import static org.codelibs.core.stream.StreamUtil.stream; import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; import java.util.Comparator; import java.util.LinkedHashMap; import java.util.Locale; import java.util.Map; import java.util.stream.Collectors; import org.apache.commons.text.StringEscapeUtils;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LinearTransformation.java
LinearTransformation result = inverse; return (result == null) ? inverse = createInverse() : result; } @Override public String toString() { return String.format("y = %g * x + %g", slope, yIntercept); } private LinearTransformation createInverse() { if (slope != 0.0) { return new RegularLinearTransformation(1.0 / slope, -1.0 * yIntercept / slope, this);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
* This class provides a convenient wrapper around a Map to store and retrieve * data store specific parameters with type-safe access methods. * * <p>The class uses a ParamMap internally which provides case format conversion * between camelCase and snake_case parameter names for flexible parameter access. * Parameters can be stored as any Object type and retrieved with type conversion * support for common types like String.</p> *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
} public void testReadLittleEndian() throws IOException { DataInput in = new LittleEndianDataInputStream(new ByteArrayInputStream(data)); /* Read in various values in LITTLE ENDIAN FORMAT */ byte[] b = new byte[2]; in.readFully(b); assertEquals(-100, b[0]); assertEquals(100, b[1]); assertEquals(true, in.readBoolean()); assertEquals(false, in.readBoolean());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 4.9K bytes - Viewed (0)