- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 567 for State (0.04 sec)
-
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
/** * Pager class for stemmer override dictionary management. * * This class provides pagination functionality for displaying stemmer override * dictionary entries in the administrative interface. It manages page state, * navigation controls, and provides methods for calculating page boundaries * and navigation elements. */ public class StemmerOverridePager implements Serializable {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
* This method fetches stemmer override entries with pagination support, updating * the provided pager with the current page state and navigation information. * * @param dictId The ID of the stemmer override dictionary to query * @param stemmerOvberridePager The pager object for pagination control and state * @return A list of stemmer override items for the current page, or empty list if dictionary not found */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
/** Operation is not supported */ public static final int ERROR_NOT_SUPPORTED = 0x00000032; /** Access denied to perform the operation */ public static final int ERROR_ACCESS_DENIED = 0x00000005; /** Invalid state for the operation */ public static final int ERROR_INVALID_STATE = 0x0000139F; /** Return code from the RPC operation */ protected int returnCode = ERROR_SUCCESS; private int opnum; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
*/ public DuplicateHostPager() { // Default constructor with explicit documentation } /** * Clears all paging state and search/filter parameters. * Resets the pager to its initial state with default values. */ public void clear() { allRecordCount = 0; allPageCount = 0; existPrePage = false; existNextPage = false;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
cmd/metrics-realtime.go
for _, d := range storageInfo.Disks { if len(disks) != 0 { _, ok := disks[d.Endpoint] if !ok { continue } } if d.State != madmin.DriveStateOk && d.State != madmin.DriveStateUnformatted { metrics[d.Endpoint] = madmin.DiskMetric{NDisks: 1, Offline: 1} continue } var dm madmin.DiskMetric dm.NDisks = 1 if d.Healing {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Jun 01 05:16:24 UTC 2024 - 6.3K bytes - Viewed (0) -
docs/resiliency/resiliency-verify-script.sh
#!/usr/bin/env bash echo "script failed" >resiliency-verify.log # assume initial state ALIAS_NAME=myminio BUCKET="test-bucket" SRC_DIR="/tmp/data" DEST_DIR="/tmp/dest" ./mc admin config set "$ALIAS_NAME" api requests_max=400 OBJ_COUNT_AFTER_STOP=$(./mc ls "${ALIAS_NAME}"/"${BUCKET}"/initial-data/ | wc -l) # Count should match the initial count of 10 if [ "${OBJ_COUNT_AFTER_STOP}" -ne 10 ]; then
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/Graphs.java
N previousNode = prev == null ? null : prev.node; if (top.remainingSuccessors == null) { NodeVisitState state = visitedNodes.get(node); if (state == NodeVisitState.COMPLETE) { stack.removeLast(); continue; } if (state == NodeVisitState.PENDING) { return true; } visitedNodes.put(node, NodeVisitState.PENDING);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 22.7K bytes - Viewed (0) -
guava/src/com/google/common/graph/Graphs.java
N previousNode = prev == null ? null : prev.node; if (top.remainingSuccessors == null) { NodeVisitState state = visitedNodes.get(node); if (state == NodeVisitState.COMPLETE) { stack.removeLast(); continue; } if (state == NodeVisitState.PENDING) { return true; } visitedNodes.put(node, NodeVisitState.PENDING);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
} /** * Request a directory lease * * @param directoryPath directory path * @param requestedState requested lease state * @param scope cache scope * @return lease key */ public Smb2LeaseKey requestDirectoryLease(String directoryPath, int requestedState, DirectoryCacheScope scope) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/http/HandlerTest.java
// Reset static state of the Handler class before each test for isolation resetHandlerState(); handler = new Handler(mockCifsContext); } @AfterEach void tearDown() throws Exception { // Restore system properties and clean up static state System.setProperties(originalSystemProperties); resetHandlerState(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0)