- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 98 for kendini (0.38 sec)
-
android/guava/src/com/google/common/graph/Graphs.java
if (state == NodeVisitState.COMPLETE) { stack.removeLast(); continue; } if (state == NodeVisitState.PENDING) { return true; } visitedNodes.put(node, NodeVisitState.PENDING); top.remainingSuccessors = new ArrayDeque<>(graph.successors(node)); } if (!top.remainingSuccessors.isEmpty()) {
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
if (state == NodeVisitState.COMPLETE) { stack.removeLast(); continue; } if (state == NodeVisitState.PENDING) { return true; } visitedNodes.put(node, NodeVisitState.PENDING); top.remainingSuccessors = new ArrayDeque<>(graph.successors(node)); } if (!top.remainingSuccessors.isEmpty()) {
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/smb1/util/transport/Transport.java
/** * This class simplifies communication for protocols that support * multiplexing requests. It encapsulates a stream and some protocol * knowledge (provided by a concrete subclass) so that connecting, * disconnecting, sending, and receiving can be syncronized * properly. Apparatus is provided to send and receive requests * concurrently. */ public abstract class Transport implements Runnable { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelInfo.java
} /** * Get number of pending operations * * @return number of pending operations */ public long getRequestsPending() { return pendingOperations.size(); } /** * Get pending operations list * * @return list of pending operations */ public List<CommonServerMessageBlock> getPendingOperations() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
private void redistributePendingOperations(ChannelInfo failedChannel) { // Get pending operations from failed channel List<SMBMessage> pendingOps = failedChannel.getPendingOperations(); if (pendingOps.isEmpty()) { return; } log.info("Redistributing {} pending operations from failed channel", pendingOps.size());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
this.currentStartRecordNumber = currentStartRecordNumber; } /** * Sets the ending record number for the current page. * * @param currentEndRecordNumber The ending record number */ public void setCurrentEndRecordNumber(final long currentEndRecordNumber) { this.currentEndRecordNumber = currentEndRecordNumber; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
/** * This class simplifies communication for protocols that support * multiplexing requests. It encapsulates a stream and some protocol * knowledge (provided by a concrete subclass) so that connecting, * disconnecting, sending, and receiving can be syncronized * properly. Apparatus is provided to send and receive requests * concurrently. */ /** * Abstract base class for network transport implementations in JCIFS.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
} protected abstract String doBuildColumnString(String dm); @Override public String toStringWithRelation() { // #pending return toString(); } @Override public String buildDisplayString(String name, boolean column, boolean relation) { // #pending return toString(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java
} protected abstract String doBuildColumnString(String dm); @Override public String toStringWithRelation() { // #pending return toString(); } @Override public String buildDisplayString(String name, boolean column, boolean relation) { // #pending return toString(); } // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt
* [Call.request] is a redirect to a different address. */ open fun connectionReleased( call: Call, connection: Connection, ) { } /** * Invoked just prior to sending request headers. * * The connection is implicit, and will generally relate to the last [connectionAcquired] event. * * This can be invoked more than 1 time for a single [Call]. For example, if the response to the
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 17.4K bytes - Viewed (0)