- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 500 for State (0.59 sec)
-
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
import org.codelibs.fess.util.ComponentUtil; /** * Pager for related content management that provides pagination functionality * for displaying related content items in the admin interface. * This class handles pagination state including current page number, page size, * total record count, and navigation controls. */ public class RelatedContentPager implements Serializable { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
@Test public void testReset() throws Exception { // Create some state String username = "resettest"; String ip = "192.168.1.12"; for (int i = 0; i < 2; i++) { rateLimiter.checkAttempt(username, ip); rateLimiter.recordFailure(username, ip); } // Should have some state AuthenticationRateLimiter.RateLimiterStats stats = rateLimiter.getStats();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
@Test @DisplayName("Should maintain state after successful read") void testStateMaintenanceAfterRead() throws Exception { byte oplockLevel = 0x02; byte[] fileId = createTestData(16); byte[] buffer = createValidOplockBreakBuffer(oplockLevel, fileId); notification.readBytesWireFormat(buffer, 0); // Verify state is maintained through multiple toString calls
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
getMockRequest().setAttribute(Constants.FIELD_LOGS, new HashMap<String, List<String>>()); queryContext = new QueryContext("allintitle:search term", true); // Verify initial state assertEquals("search term", queryContext.getQueryString()); assertEquals("title", queryContext.getDefaultField()); assertTrue(queryContext.roleQueryEnabled()); // Set query builder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ClosingFuture.java
} } private void checkAndUpdateState(State oldState, State newState) { checkState( compareAndUpdateState(oldState, newState), "Expected state to be %s, but it was %s", oldState, newState); } private boolean compareAndUpdateState(State oldState, State newState) { return state.compareAndSet(oldState, newState); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 98.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
void awaitWaiting() { while (!isBlocked()) { if (getState() == State.TERMINATED) { throw new RuntimeException("Thread exited"); } Thread.yield(); } } private boolean isBlocked() { return getState() == Thread.State.WAITING && LockSupport.getBlocker(this) == future; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp
key="labels.user_state"/></label> <div class="col-sm-9"> <la:errors property="attributes.state"/>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Feb 14 12:15:45 UTC 2020 - 31.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionList.java
// NPE on null listener, so we propagate that contract up into the add method as well. checkNotNull(runnable, "Runnable was null."); checkNotNull(executor, "Executor was null."); // Lock while we check state. We must maintain the lock while adding the new pair so that // another thread can't run the list out from under us. We only add to the list if we have not // yet started execution. synchronized (this) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0)