- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 189 for Float (0.02 sec)
-
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) -
src/cmd/asm/internal/asm/testdata/riscv64validation.s
VFMULVV X10, V2, V3 // ERROR "expected vector register in vs1 position" VFMULVF X10, V2, V3 // ERROR "expected float register in rs1 position" VFDIVVV X10, V2, V3 // ERROR "expected vector register in vs1 position" VFDIVVF X10, V2, V3 // ERROR "expected float register in rs1 position" VFRDIVVF X10, V2, V3 // ERROR "expected float register in rs1 position"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 14:19:19 UTC 2025 - 31.6K 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) -
guava/src/com/google/common/collect/ComparisonChain.java
*/ public abstract ComparisonChain compare(long left, long right); /** * Compares two {@code float} values as specified by {@link Float#compare}, <i>if</i> the result * of this comparison chain has not already been determined. */ public abstract ComparisonChain compare(float left, float right); /** * Compares two {@code double} values as specified by {@link Double#compare}, <i>if</i> the result
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.1K 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) -
api/go1.5.txt
pkg math/big, method (*Float) Mode() RoundingMode pkg math/big, method (*Float) Mul(*Float, *Float) *Float pkg math/big, method (*Float) Neg(*Float) *Float pkg math/big, method (*Float) Parse(string, int) (*Float, int, error) pkg math/big, method (*Float) Prec() uint pkg math/big, method (*Float) Quo(*Float, *Float) *Float pkg math/big, method (*Float) Rat(*Rat) (*Rat, Accuracy) pkg math/big, method (*Float) Set(*Float) *Float
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
} @Test public void testToSuggestItemWithLargeBoost() { // Test toSuggestItem with large boost value String word = "large boost"; float boost = Float.MAX_VALUE; List<String> readings = Arrays.asList("reading1"); List<String> fields = Arrays.asList("field1"); List<String> tags = Arrays.asList("tag1");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0)