- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 160 for Float (0.06 sec)
-
src/main/java/org/codelibs/core/convert/FloatConversionUtil.java
} private static Float toFloat(final String s) { if (StringUtil.isEmpty(s)) { return null; } return Float.valueOf(DecimalFormatUtil.normalize(s)); } /** * Converts to {@literal float}. * * @param o * The object to convert * @return The converted {@literal float} */ public static float toPrimitiveFloat(final Object o) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Floats.java
return Float.compare(a, b); } /** * Returns {@code true} if {@code value} represents a real number. This is equivalent to, but not * necessarily implemented as, {@code !(Float.isInfinite(value) || Float.isNaN(value))}. * * <p>Prefer {@link Float#isFinite(float)} instead. * * @since 10.0 */ @InlineMe(replacement = "Float.isFinite(value)") public static boolean isFinite(float value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1}, -2, new float[] {1}); testRotate(new float[] {1}, -1, new float[] {1}); testRotate(new float[] {1}, 0, new float[] {1}); testRotate(new float[] {1}, 1, new float[] {1}); testRotate(new float[] {1}, 2, new float[] {1}); testRotate(new float[] {1, 2}, -3, new float[] {2, 1}); testRotate(new float[] {1, 2}, -1, new float[] {2, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1}, -2, new float[] {1}); testRotate(new float[] {1}, -1, new float[] {1}); testRotate(new float[] {1}, 0, new float[] {1}); testRotate(new float[] {1}, 1, new float[] {1}); testRotate(new float[] {1}, 2, new float[] {1}); testRotate(new float[] {1, 2}, -3, new float[] {2, 1}); testRotate(new float[] {1, 2}, -1, new float[] {2, 1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java
@Override protected List<Float> create(Float[] elements) { return asList(elements); } } public static final class FloatsAsListHeadSubListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { Float[] suffix = {Float.MIN_VALUE, Float.MAX_VALUE}; Float[] all = concat(elements, suffix);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/FloatArrayAsListTest.java
@Override protected List<Float> create(Float[] elements) { return asList(elements); } } public static final class FloatsAsListHeadSubListGenerator extends TestFloatListGenerator { @Override protected List<Float> create(Float[] elements) { Float[] suffix = {Float.MIN_VALUE, Float.MAX_VALUE}; Float[] all = concat(elements, suffix);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/ne.css
a { display: block; float: left; width: 300px; height: 50px; padding: 2px; font-family: Verdana, sans-serif; font-size: 10pt; color: #000000; text-decoration: none } a.plain { display: inline; float: none; width: auto; height: auto } a.sort { display: block; float: left; width: 100px; height: 15px; font-family: Verdana, sans-serif;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
/** * Returns a new array with the specified float value appended to the end of the float array. * * @param array * the array. Must not be {@literal null} * @param value * the value to add * @return a new array with the value appended */ public static float[] add(final float[] array, final float value) { assertArgumentNotNull("array", array);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
// Test execute method with very large boost value QueryContext context = new QueryContext("*:*", false); MatchAllDocsQuery query = new MatchAllDocsQuery(); float boost = Float.MAX_VALUE; QueryBuilder result = matchAllQueryCommand.execute(context, query, boost); assertNotNull(result); assertTrue(result instanceof MatchAllQueryBuilder); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
} /** * Encodes a float value in big-endian byte order. * * @param f the float value to encode * @param dst the destination byte array * @param di the starting index in the destination array * @return the number of bytes written (4) */ public static int enc_floatbe(final float f, final byte[] dst, final int di) { return enc_uint32be(Float.floatToIntBits(f), dst, di); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0)