- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 201 for minuto (0.46 sec)
-
src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java
byte[] buffer = new byte[100]; int startIndex = 5; original.encode(buffer, startIndex); // Now decode into a new instance int bytesRead = fileBasicInfo.decode(buffer, startIndex, 36); // Verify bytes read assertEquals(36, bytesRead); // Verify decoded values match original
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn
concat_lines() { if [ -f "$1" ]; then # First convert all CR to LF using tr tr '\r' '\n' < "$1" | \ sed -e '/^$/d' -e 's/#.*$//' | \ # Replace LF with NUL for xargs tr '\n' '\0' | \ # Split into words and process each argument # Use -0 with NUL to avoid special behaviour on quotes xargs -n 1 -0 | \ while read -r arg; do # Replace variables first arg=$(echo "$arg" | sed \
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 24 09:49:07 UTC 2025 - 7.7K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheStats.java
* and {@code other}. Negative values, which aren't supported by {@code CacheStats} will be * rounded up to zero. */ public CacheStats minus(CacheStats other) { return new CacheStats( max(0, saturatedSubtract(hitCount, other.hitCount)), max(0, saturatedSubtract(missCount, other.missCount)),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
decodeIpChangeMessage(buf, message); break; default: // Skip unknown message types buf.advance(messageLength - 8); // Skip remaining data (minus type and length) break; } return message; } /** * Decodes a resource change notification message. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
docs/es/docs/deployment/https.md
Algunas de las opciones que podrĂas usar como un TLS Termination Proxy son:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 13K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacLogonInfoTest.java
PacDataInputStream pacStream = new PacDataInputStream(bais); SID id = pacStream.readId(); assertNotNull(id); // The RID should be incorporated into the SID byte[] sidBytes = id.toByteArray(); assertTrue(sidBytes.length > 0); } @Test @DisplayName("Test PacDataInputStream readString method")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
} } @J2ktIncompatible // slow enough to cause flakiness @GwtIncompatible // far too slow public void testSqrtOfPerfectSquareAsDoubleIsPerfect() { // This takes just over a minute on my machine. for (long n = 0; n <= LongMath.FLOOR_SQRT_MAX_LONG; n++) { long actual = (long) Math.sqrt((double) (n * n)); assertTrue(actual == n); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 31.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CharMatcher.java
* assigned characters, including important CJK characters and emoji. * * <p>Supplementary characters are <a * href="https://docs.oracle.com/javase/8/docs/api/java/lang/Character.html#supplementary">encoded * into a {@code String} using surrogate pairs</a>, and a {@code CharMatcher} treats these just as * two separate characters. {@link #countIn} counts each supplementary character as 2 {@code char}s. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 53.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Cut.java
/** * Implementation detail for the internal structure of {@link Range} instances. Represents a unique * way of "cutting" a "number line" (actually of instances of type {@code C}, not necessarily * "numbers") into two sections; this can be done below a certain value, above a certain value, * below all values or above all values. With this object defined in this way, an interval can * always be represented by a pair of {@code Cut} instances.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 12.4K bytes - Viewed (0)