- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 35 for 76 (0.02 sec)
-
.github/PULL_REQUEST_TEMPLATE
"This change modifies Go to ___________" + Lowercase verb after the colon + No trailing period + Keep the title as short as possible. ideally under 76 characters or shorter + No Markdown + The first PR comment (this one) is wrapped at 76 characters, unless it's really needed (ASCII art, table, or long link) + If there is a corresponding issue, add either `Fixes #1234` or `Updates #1234`
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Feb 21 02:07:46 UTC 2018 - 1.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheStatsTest.java
} public void testMinus() { CacheStats one = new CacheStats(11, 13, 17, 19, 23, 27); CacheStats two = new CacheStats(53, 47, 43, 41, 37, 31); CacheStats diff = two.minus(one); assertEquals(76, diff.requestCount()); assertEquals(42, diff.hitCount()); assertThat(diff.hitRate()).isEqualTo(42.0 / 76); assertEquals(34, diff.missCount()); assertThat(diff.missRate()).isEqualTo(34.0 / 76);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 18:10:55 UTC 2024 - 4.8K bytes - Viewed (0) -
internal/grid/handlers_string.go
_ = x[HandlerWriteAll-70] _ = x[HandlerListBuckets-71] _ = x[HandlerRenameDataInline-72] _ = x[HandlerRenameData2-73] _ = x[HandlerCheckParts2-74] _ = x[HandlerRenamePart-75] _ = x[HandlerClearUploadID-76] _ = x[handlerTest-77] _ = x[handlerTest2-78] _ = x[handlerLast-79] }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 4.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
for (int i = 0; i < 8; i++) { limiter.acquire(); // #7 } assertEvents( "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #1 "U0.20", // #2 "U4.00", // #3 "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #4 "U0.20", // #5 "U1.00", // #6 "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20"); // #7 }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 21.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
for (int i = 0; i < 8; i++) { limiter.acquire(); // #7 } assertEvents( "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #1 "U0.20", // #2 "U4.00", // #3 "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #4 "U0.20", // #5 "U1.00", // #6 "R0.00, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20, R0.20"); // #7 }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 21.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.7.md
- [Client Binaries](#client-binaries-9) - [Server Binaries](#server-binaries-9) - [Node Binaries](#node-binaries-9) - [Changelog since v1.7.6](#changelog-since-v176) - [Other notable changes](#other-notable-changes-9) - [v1.7.6](#v176) - [Downloads for v1.7.6](#downloads-for-v176) - [Client Binaries](#client-binaries-10) - [Server Binaries](#server-binaries-10) - [Node Binaries](#node-binaries-10)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
listOf("6.4", "6.7"), // 6.4 <=version < 6.7 listOf("6.7", "7.0"), // 6.7 <=version < 7.0 listOf("7.0", "7.3"), // 7.0 <=version < 7.3 listOf("7.3", "7.6"), // 7.3 <=version < 7.6 listOf("7.6", "8.2"), // 7.6 <=version < 8.2 listOf("8.2", "8.6"), // 8.2 <=version < 8.6 listOf("8.6", "99.0") // 8.6 <=version < 99.0 )
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Jun 12 09:50:29 UTC 2024 - 9K bytes - Viewed (0) -
javadoc-stylesheet.css
/* Javadoc style sheet */ /* Overall document style */ body { background-color:#ffffff; color:#353833; font-family:Arial, Helvetica, sans-serif; font-size:76%; margin:0; } a:link, a:visited { text-decoration:none; color:#4c6b87; } a:hover, a:focus { text-decoration:none; color:#bb7a2a; } a:active { text-decoration:none; color:#4c6b87; } a[name] {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 17 21:01:06 UTC 2013 - 11.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
@ElementTypesAreNonnullByDefault public class AtomicDoubleArray implements Serializable { private static final long serialVersionUID = 0L; // Making this non-final is the lesser evil according to Effective // Java 2nd Edition Item 76: Write readObject methods defensively. private transient AtomicLongArray longs; /** * Creates a new {@code AtomicDoubleArray} of the given length, with all elements initially zero. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 10.3K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrRequestTimeTooSkewed-70] _ = x[ErrSignatureDoesNotMatch-71] _ = x[ErrMethodNotAllowed-72] _ = x[ErrInvalidPart-73] _ = x[ErrInvalidPartOrder-74] _ = x[ErrMissingPart-75] _ = x[ErrAuthorizationHeaderMalformed-76] _ = x[ErrMalformedPOSTRequest-77] _ = x[ErrPOSTFileRequired-78] _ = x[ErrSignatureVersionNotSupported-79] _ = x[ErrBucketNotEmpty-80] _ = x[ErrAllAccessDisabled-81] _ = x[ErrPolicyInvalidVersion-82]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 21.4K bytes - Viewed (0)