- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 405 for initially (0.06 sec)
-
android/guava/src/com/google/common/collect/Lists.java
return Ints.saturatedCast(5L + arraySize + (arraySize / 10)); } /** * Creates an {@code ArrayList} instance backed by an array with the specified initial size; * simply delegates to {@link ArrayList#ArrayList(int)}. * * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
} public void test_constructor() { // Test that constructor creates a valid instance QueryFieldConfig config = new QueryFieldConfig(); assertNotNull(config); // Verify initial state (fields should be null before init) assertNull(config.responseFields); assertNull(config.scrollResponseFields); assertNull(config.cacheResponseFields);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
} if (originalJobHelper != null) { ComponentUtil.register(originalJobHelper, "jobHelper"); } super.tearDown(); } // Test constructor and initial state public void test_constructor() { assertNotNull(execJob); assertNull(execJob.jobExecutor); assertNull(execJob.sessionId); assertTrue(execJob.useLocalFesen);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
tensorflow/c/c_api.h
// for created operations. const char* name; } TF_WhileParams; // Creates a TF_WhileParams for creating a while loop in `g`. `inputs` are // outputs that already exist in `g` used as initial values for the loop // variables. // // The returned TF_WhileParams will have all fields initialized except // `cond_output`, `body_outputs`, and `name`. The `body_outputs` buffer will be
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt
source = continuation, headerTableSizeSetting = 4096, ) @Throws(IOException::class) fun readConnectionPreface(handler: Handler) { if (client) { // The client reads the initial SETTINGS frame. if (!nextFrame(true, handler)) { throw IOException("Required SETTINGS preface not received") } } else { // The server reads the CONNECTION_PREFACE byte string.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 19.8K bytes - Viewed (0) -
guava/src/com/google/common/math/BigIntegerMath.java
if (log2 < Double.MAX_EXPONENT) { sqrt0 = sqrtApproxWithDoubles(x); } else { int shift = (log2 - DoubleUtils.SIGNIFICAND_BITS) & ~1; // even! /* * We have that x / 2^shift < 2^54. Our initial approximation to sqrtFloor(x) will be * 2^(shift/2) * sqrtApproxWithDoubles(x / 2^shift). */ sqrt0 = sqrtApproxWithDoubles(x.shiftRight(shift)).shiftLeft(shift >> 1); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertEquals(24 + (24 * 4), bytesWritten); } @Test @DisplayName("Should handle file ID updates") void testFileIdUpdates() { // Initial file ID byte[] initialFileId = new byte[16]; Arrays.fill(initialFileId, (byte) 0x11); request.setFileId(initialFileId); byte[] buffer1 = new byte[256];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
@Override public String getLdapAttrCarLicense() { return "carLicense"; } @Override public String getLdapAttrInitials() { return "initials"; } @Override public String getLdapAttrPostOfficeBox() { return "postOfficeBox"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
SmbFile dir = new SmbFile("smb://server/share/testdir/", context); SmbFile testFile = new SmbFile("smb://server/share/testdir/newfile.txt", context); // Get initial listing (establishes cache) SmbFile[] initialFiles = dir.listFiles(); // Create new file testFile.createNewFile(); // Wait for change notification Thread.sleep(2000);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
assertNotNull(resp); assertTrue(resp instanceof ServerMessageBlock2Response); assertTrue(resp instanceof SmbNegotiationResponse); } @Test @DisplayName("Should return initial credits from getCredit") void testGetInitialCredits() throws Exception { // Given - set credit using reflection Field creditField = ServerMessageBlock2.class.getDeclaredField("credit");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0)