- Sort Score
- Result 10 results
- Languages All
Results 701 - 710 of 880 for multiples (1.11 sec)
-
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
protected boolean httpOnly = true; /** * Retrieves the user code for the current request. * The user code is used to uniquely identify users across sessions and requests. * It checks multiple sources in order: request attribute, request parameter, cookie, user bean, or generates a new one. * * @return the user code string, or null if no valid session exists */ public String getUserCode() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMaker.java
} /** * Builds a thread-safe map. This method does not alter the state of this {@code MapMaker} * instance, so it can be invoked again to create multiple independent maps. * * <p>The bulk operations {@code putAll}, {@code equals}, and {@code clear} are not guaranteed to * be performed atomically on the returned map. Additionally, {@code size} and {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
++counts; } } } if (done) { break; } } } } /** * Multiple threads using same array of counters successfully update a number of times equal to * total count */ public void testCountingInMultipleThreads() throws InterruptedException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionServicePacketTest.java
int bytesRead = SessionServicePacket.readn(bais, buffer, 0, 5); assertEquals(0, bytesRead); } @Test @DisplayName("readn should handle multiple read calls") void testReadnMultipleCalls() throws IOException { when(mockInputStream.read(any(byte[].class), anyInt(), anyInt())).thenReturn(2) // First read returns 2 bytes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java
@Test @DisplayName("Should handle multiple close calls gracefully") void testMultipleCloseCalls() throws Exception { byte[] sessionKey = new byte[16]; Arrays.fill(sessionKey, (byte) 0xEE); Smb2SigningDigest digest = new Smb2SigningDigest(sessionKey, Smb2Constants.SMB2_DIALECT_0202, null); // Close multiple times should not throw digest.close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 43.7K bytes - Viewed (0) -
cmd/sts-handlers.go
// use that and validate the authentication request. If not, we assume this // is an STS request for a claim based IDP (if one is present) and set // roleArn = openid.DummyRoleARN. // // Currently, we do not support multiple claim based IDPs, as there is no // defined parameter to disambiguate the intended IDP in this STS request. roleArn := openid.DummyRoleARN roleArnStr := r.Form.Get(stsRoleArn) isRolePolicyProvider := roleArnStr != ""
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 36.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
request.setRequestURI("/api/data#anchor"); assertTrue(manager.matches(request)); } public void test_process_withMultipleOperations() throws IOException, ServletException { // Test multiple operations in process ComplexWebApiManager manager = new ComplexWebApiManager(); TestHttpServletRequest request = new TestHttpServletRequest();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
} } } } /** * SAMR SAM Array structure representing an array of SAM entries. * Used to return multiple SAM objects in enumeration operations. */ public static class SamrSamArray extends NdrObject { /** * Default constructor for SamrSamArray. */ public SamrSamArray() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
} } } } /** * SAMR SAM Array structure representing an array of SAM entries. * Used to return multiple SAM objects in enumeration operations. */ public static class SamrSamArray extends NdrObject { /** * Default constructor for SamrSamArray. */ public SamrSamArray() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
// This class can make no hard guarantees. The methods in this class are inherently flaky, but // we try hard to make them robust in practice. We could additionally try to add in a system // load timeout multiplier. Or we could try to use a CPU time bound instead of wall clock time // bound. But these ideas are harder to implement. We do not try to detect or handle a // user-specified -XX:+DisableExplicitGC. //
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0)