- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 53 for AtomicLong (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
/** Sort list. */ protected List<SortBuilder<?>> sortList = new ArrayList<>(); /** Scroll ID. */ protected String scrollId = null; /** Document count. */ protected final AtomicLong docCount = new AtomicLong(0); /** Total document number. */ protected final long totalDocNum; /** * Constructor for ESSourceReader. * @param client The OpenSearch client.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.witness; import java.net.InetAddress; import java.util.concurrent.atomic.AtomicLong; /** * Represents a witness service registration for SMB resource monitoring. * This class maintains registration state, heartbeat information, and * sequence numbers for witness protocol communication. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
public class RdmaStatistics { private final AtomicLong rdmaReads = new AtomicLong(); private final AtomicLong rdmaWrites = new AtomicLong(); private final AtomicLong rdmaSends = new AtomicLong(); private final AtomicLong rdmaReceives = new AtomicLong(); private final AtomicLong bytesTransferred = new AtomicLong(); private final AtomicLong operationErrors = new AtomicLong();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
private final byte[] fileId; private boolean open = true; private final long tree_num; // for checking whether the tree changed private SmbTreeHandleImpl tree; private final AtomicLong usageCount = new AtomicLong(1); private final int flags; private final int access; private final int attrs; private final int options; private final String unc;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.4K bytes - Viewed (1) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
*/ public void testBuilder_bruteForce() { for (int i = 0; i < reduceIterationsIfGwt(100); i++) { ImmutableLongArray.Builder builder = ImmutableLongArray.builder(random.nextInt(20)); AtomicLong counter = new AtomicLong(0); while (counter.get() < 1000) { BuilderOp op = BuilderOp.randomOp(); op.doIt(builder, counter); } ImmutableLongArray iia = builder.build();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
private final ReferenceQueue<AutoCloseable> referenceQueue = new ReferenceQueue<>(); private final AtomicLong resourceIdCounter = new AtomicLong(); private final AtomicLong totalAllocated = new AtomicLong(); private final AtomicLong totalReleased = new AtomicLong(); private final AtomicLong totalLeaks = new AtomicLong(); private final ScheduledExecutorService cleanupExecutor; private ScheduledFuture<?> cleanupTask;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
private final AtomicLong currentWindowStart = new AtomicLong(System.currentTimeMillis()); // Cleanup scheduler private final ScheduledExecutorService cleanupScheduler; private final AtomicBoolean closed = new AtomicBoolean(false); // Statistics private final AtomicLong totalAttemptsBlocked = new AtomicLong(0); private final AtomicLong totalAccountsLocked = new AtomicLong(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
private final ExecutorService channelExecutor; private final ScheduledExecutorService healthCheckExecutor; // Statistics private final AtomicLong totalRequests = new AtomicLong(0); private final AtomicLong totalChannelsCreated = new AtomicLong(0); /** * Load balancing strategies for distributing operations across channels. */ public enum LoadBalancingStrategy {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
private volatile boolean healthCheckingEnabled = true; // Health check metrics private final AtomicLong totalHealthChecks = new AtomicLong(0); private final AtomicLong failedHealthChecks = new AtomicLong(0); private final AtomicLong connectionsRemoved = new AtomicLong(0); private final AtomicInteger activeConnections = new AtomicInteger(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeHandleImpl.java
private final SmbResourceLocatorImpl resourceLoc; private final SmbTreeConnection treeConnection; private final AtomicLong usageCount = new AtomicLong(1); /** * @param resourceLoc * @param treeConnection */ public SmbTreeHandleImpl(final SmbResourceLocatorImpl resourceLoc, final SmbTreeConnection treeConnection) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0)