Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 404 for Multiple (2.71 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Connection.kt

     *  limitations under the License.
     */
    package okhttp3
    
    import java.net.Socket
    
    /**
     * The sockets and streams of an HTTP, HTTPS, or HTTPS+HTTP/2 connection. May be used for multiple
     * HTTP request/response exchanges. Connections may be direct to the origin server or via a proxy.
     *
     * Typically instances of this class are created, connected and exercised automatically by the HTTP
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            String[] permissions = fessUserBean.getPermissions();
            assertEquals(1, permissions.length);
            assertEquals("read", permissions[0]);
    
            // Test with multiple permissions
            testUser.setPermissions(new String[] { "read", "write", "delete" });
            permissions = fessUserBean.getPermissions();
            assertEquals(3, permissions.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java

            assertNotNull(option2);
    
            // Each call should return a new instance
            assertNotSame(option1, option2);
        }
    
        public void test_provideMappingOption_consistency() {
            // Test that multiple calls provide consistent configuration
            JsonMappingOption option1 = provider.provideMappingOption();
            JsonMappingOption option2 = provider.provideMappingOption();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Call aborted() multiple times
            assertTrue(exception.aborted());
            assertTrue(exception.aborted());
            assertTrue(exception.aborted());
        }
    
        public void test_getUrl_multipleCallsReturnSameValue() {
            // Test that multiple calls to getUrl() return the same value
            String url = "http://example.com/test";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       *         .addAll(SINGLE_DIGIT_PRIMES)
       *         .add(42)
       *         .build();
       * }
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
       * multiple sets in series. Each set is a superset of the set created before it.
       *
       * @since 2.0
       */
      public static final class Builder<E> extends ImmutableSet.Builder<E> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36.8K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/Task.kt

     * task should not be executed again. Otherwise it returns a delay until the next execution.
     *
     * A task has at most one next execution. If the same task instance is scheduled multiple times, the
     * earliest one wins. This applies to both executions scheduled with [TaskRunner.Queue.schedule] and
     * those implied by the returned execution delay.
     *
     * Cancellation
     * ------------
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

                assertSame(invertibleCryptographer, invertibles[i]);
                assertSame(oneWayCryptographer, oneWays[i]);
            }
        }
    
        // Test with multiple providers
        public void test_multipleProviders() {
            // Test that multiple providers can coexist independently
            InvertibleCryptographer inver1 = InvertibleCryptographer.createAesCipher("key1key1key1key1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    	<fieldset class="mb-3">
    		<legend><la:message key="labels.index_lang" /></legend>
    		<label for="langSearchOption"><la:message key="labels.index_lang" /></label>
    		<la:select property="lang" styleId="langSearchOption" multiple="true"
    			styleClass="form-control">
    			<c:forEach var="item" items="${langItems}">
    				<la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
    			</c:forEach>
    		</la:select>
    	</fieldset>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:47:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/searchOptions.jsp

    	<fieldset class="mb-3">
    		<legend><la:message key="labels.index_lang" /></legend>
    		<label for="langSearchOption"><la:message key="labels.index_lang" /></label>
    		<la:select property="lang" styleId="langSearchOption" multiple="true"
    			styleClass="form-control">
    			<c:forEach var="item" items="${langItems}">
    				<la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
    			</c:forEach>
    		</la:select>
    	</fieldset>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:47:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            authenticationManager.insert(user);
    
            assertEquals(1, chain.updateCallCount);
            assertEquals(user, chain.lastUpdatedUser);
        }
    
        // Test insert with multiple chains
        public void test_insert_multipleChains() {
            User user = createTestUser("testuser");
            TestAuthenticationChain chain1 = new TestAuthenticationChain();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top