- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 337 for doubles (0.04 sec)
-
docs/smb3-features/05-rdma-smb-direct-design.md
} public void recordError() { operationErrors.incrementAndGet(); } public double getErrorRate() { long total = rdmaReads.get() + rdmaWrites.get() + rdmaSends.get() + rdmaReceives.get(); if (total == 0) return 0.0; return (double) operationErrors.get() / total; } // Getters for all statistics... } ```
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
// Test with numeric data Map<String, Object> numericData = new HashMap<>(); numericData.put("integer", 123); numericData.put("long", 456L); numericData.put("double", 789.0); callback.store(params, numericData); // Test with boolean data Map<String, Object> booleanData = new HashMap<>(); booleanData.put("flag", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
// If the build section is present and the project directory is non-null, we should make // sure interpolation of the directories below uses translated paths. // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the // code below... translatedPrefixes.add("build.directory"); translatedPrefixes.add("build.outputDirectory");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java
buffer.putInt(1); buffer.putInt(1); // When fileFsSizeInfo.decode(buffer.array(), 0, 24); double percentFree = (fileFsSizeInfo.getFree() * 100.0) / fileFsSizeInfo.getCapacity(); double percentUsed = ((fileFsSizeInfo.getCapacity() - fileFsSizeInfo.getFree()) * 100.0) / fileFsSizeInfo.getCapacity(); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.9K bytes - Viewed (0) -
src/main/resources/fess_message_pl.properties
errors.app.db.already.updated = Mogło zostać już zaktualizowane przez inny proces. Spróbuj ponownie. errors.app.db.already.exists = Dane już istnieją. Spróbuj ponownie. errors.app.double.submit.request = To żądanie mogło zostać już przetworzone. Spróbuj ponownie. # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ # you can define your messages here: # e.g.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.5K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
Code Cleanup ------------ IntelliJ and Android Studio offer a **Code Cleanup** feature that will automatically update deprecated APIs with their replacements. Access this feature from the _Search Anywhere_ dialog (double-press shift) or under the _Analyze_ menu. We’ve included deprecated APIs in OkHttp 4.0 because they make migration easy. We will remove them
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
assertEquals(24L, MemoryUtil.sizeOf(Long.MAX_VALUE)); assertEquals(24L, MemoryUtil.sizeOf(Short.MAX_VALUE)); assertEquals(24L, MemoryUtil.sizeOf(Float.MAX_VALUE)); assertEquals(24L, MemoryUtil.sizeOf(Double.MAX_VALUE)); assertEquals(24L, MemoryUtil.sizeOf(Byte.MAX_VALUE)); assertEquals(16L, MemoryUtil.sizeOf(Boolean.TRUE)); assertEquals(32L, MemoryUtil.sizeOf(new Date()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableBiMap.java
static final RegularImmutableBiMap<Object, Object> EMPTY = new RegularImmutableBiMap<>( null, null, (Entry<Object, Object>[]) ImmutableMap.EMPTY_ENTRY_ARRAY, 0, 0); static final double MAX_LOAD_FACTOR = 1.2; private final transient @Nullable ImmutableMapEntry<K, V> @Nullable [] keyTable; private final transient @Nullable ImmutableMapEntry<K, V> @Nullable [] valueTable;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/webapp/css/font-awesome.min.css
eting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}....
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Dec 14 21:22:25 UTC 2019 - 55.8K bytes - Viewed (2) -
docs/smb3-features/02-persistent-handles-design.md
private final AtomicLong reconnectSuccesses = new AtomicLong(); private final AtomicLong handleExpirations = new AtomicLong(); public double getReconnectSuccessRate() { long attempts = reconnectAttempts.get(); if (attempts == 0) return 0.0; return (double) reconnectSuccesses.get() / attempts; } } ``` ## 12. Security Considerations ### 12.1 Handle State Encryption ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)