- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 234 for 1000KB (0.06 sec)
-
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponseTest.java
assertEquals(1000, info.alloc); assertEquals(500, info.free); assertEquals(100, info.sectPerAlloc); assertEquals(512, info.bytesPerSect); assertEquals(1000L * 100 * 512, info.getCapacity(), "Capacity calculation should be correct");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.6K bytes - Viewed (0) -
cmd/warm-backend-minio.go
) type warmBackendMinIO struct { warmBackendS3 } var _ WarmBackend = (*warmBackendMinIO)(nil) const ( maxMultipartPutObjectSize = 1024 * 1024 * 1024 * 1024 * 5 maxPartsCount = 10000 maxPartSize = 1024 * 1024 * 1024 * 5 minPartSize = 1024 * 1024 * 128 // chosen by us to be optimal for HDDs ) // optimalPartInfo - calculate the optimal part info for a given // object size.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 4K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
StringBuilder longNameBuilder = new StringBuilder(); for (int i = 0; i < 10000; i++) { longNameBuilder.append("a"); } String longName = longNameBuilder.toString(); StringBuilder longValueBuilder = new StringBuilder(); for (int i = 0; i < 10000; i++) { longValueBuilder.append("b"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
public void testSetFuture_stackOverflow() { SettableFuture<String> orig = SettableFuture.create(); SettableFuture<String> prev = orig; for (int i = 0; i < 100000; i++) { SettableFuture<String> curr = SettableFuture.create(); prev.setFuture(curr); prev = curr; } // prev represents the 'innermost' future prev.set("done");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
cmd/endpoint_contrib_test.go
endPoints set.StringSet expectedResult set.StringSet }{ {set.NewStringSet(), set.NewStringSet()}, {set.CreateStringSet("localhost"), set.NewStringSet()}, {set.CreateStringSet("localhost", "10.0.0.1"), set.CreateStringSet("10.0.0.1:9000")}, {set.CreateStringSet("localhost:9001", "10.0.0.1"), set.CreateStringSet("10.0.0.1:9000")}, {set.CreateStringSet("localhost", "10.0.0.1:9001"), set.CreateStringSet("10.0.0.1:9001")},
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 30 15:50:39 UTC 2021 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/CaseInsensitiveMapTest.java
} /** * @throws Exception */ @Test public void testPerformance() throws Exception { for (int j = 0; j < 3; ++j) { final int num = 100000; final Map<String, String> hmap = new HashMap<String, String>(); final Map<String, String> cimap = new CaseInsensitiveMap<String>(); long start = System.currentTimeMillis();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help_ja.jsp
検索語の先頭文字では利用できません。 </dd> <dt>範囲検索</dt> <dd> 範囲検索はフィールド値の範囲を指定することでその条件にマッチするドキュメントを検索します。 範囲の境界値を含める場合は [] を利用して、含めない場合は {} を利用します。 たとえば、content_length フィールドが 1000 から 10000 の値を持つドキュメントを検索する場合は次のように入力します。 <pre>content_length:[1000 TO 10000]</pre> </dd> <dt>ブースト検索</dt> <dd> ブースト検索は検索語の後に ^ を指定することで利用できます。 ^ の後に重み要因を整数で指定することで、その検索語がブーストされます。 <pre>Fess^100</pre> </dd> <dt>あいまい検索</dt> <dd>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 3.4K bytes - Viewed (0) -
src/main/webapp/js/advance.js
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 30 05:45:24 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Response.java
if (timeout100Ns == 0) { return 0; // Persistent handles } // Convert from 100-nanosecond intervals to milliseconds // 1 ms = 10,000 * 100ns intervals return timeout100Ns / 10000L; } /** * Get the flags * @return the flags */ public int getFlags() { return flags; } /** * Check if this is a persistent handle
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessNotificationTest.java
assertEquals(WitnessNotification.WitnessIPAddress.IPV6, newIPv6.getFlags()); } @Test void testWitnessIPAddressFlags() throws Exception { InetAddress ipv4 = InetAddress.getByName("10.0.0.1"); InetAddress ipv6 = InetAddress.getByName("fe80::1"); WitnessNotification.WitnessIPAddress addr4 = new WitnessNotification.WitnessIPAddress(ipv4);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5K bytes - Viewed (0)