- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 246 for presentation (0.2 sec)
-
guava/src/com/google/common/util/concurrent/AtomicDouble.java
if (updater.compareAndSet(this, current, next)) { return nextVal; } } } /** * Returns the String representation of the current value. * * @return the String representation of the current value */ @Override public String toString() { return Double.toString(get()); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/UnsignedLong.java
return value == other.value; } return false; } /** Returns a string representation of the {@code UnsignedLong} value, in base 10. */ @Override public String toString() { return UnsignedLongs.toString(value); } /** * Returns a string representation of the {@code UnsignedLong} value, in base {@code radix}. If
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 8.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
if (longs.compareAndSet(i, current, next)) { return nextVal; } } } /** * Returns the String representation of the current values of array. * * @return the String representation of the current values of array */ @Override public String toString() { int iMax = length() - 1; if (iMax == -1) { return "[]"; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.2K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
* they have the same number of bits. */ abstract boolean equalsSameBits(HashCode that); /** * Creates a 32-bit {@code HashCode} representation of the given int value. The underlying bytes * are interpreted in little endian order. * * @since 15.0 (since 12.0 in HashCodes) */ public static HashCode fromInt(int hash) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java
/** * Test the toString method with SV_TYPE_ALL. */ @Test void testToString_SV_TYPE_ALL() { String result = netServerEnum2.toString(); // Verify the key parts of the string representation assertTrue(result.startsWith("NetServerEnum2[")); assertTrue(result.contains("command=SMB_COM_TRANSACTION")); assertTrue(result.contains(",name=\\PIPE\\LANMAN"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java
* on which it applies. * * @return the name of the tool option for this path type */ @Nonnull Optional<String> option(); /** * Returns the option followed by a string representation of the given path elements. * The path elements are separated by an option-specific or platform-specific separator. * If the given {@code paths} argument contains no element, then this method returns an empty string.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Jan 07 12:02:00 UTC 2025 - 5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
return true; } } /** * Returns a string representation of x, where x is treated as unsigned. * * <p><b>Java 8+ users:</b> use {@link Long#toUnsignedString(long)} instead. */ public static String toString(long x) { return toString(x, 10); } /** * Returns a string representation of {@code x} for the given radix, where {@code x} is treated as * unsigned. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractMultimap.java
*/ @Override public int hashCode() { return asMap().hashCode(); } /** * Returns a string representation of the multimap, generated by calling {@code toString} on the * map returned by {@link Multimap#asMap}. * * @return a string representation of the multimap */ @Override public String toString() { return asMap().toString(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Story.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.internal.http2.hpackjson /** * Representation of one story, a set of request headers to encode or decode. This class is used * reflectively with Moshi to parse stories from files. */ data class Story( val description: String? = null, val cases: List<Case>,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.1K bytes - Viewed (0)