- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 1,614 for implements (0.1 sec)
-
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
import jcifs.smb.SmbTransportInternal; /** * RDMA-enabled SMB transport that wraps existing SMB transport * and adds RDMA capabilities for direct memory access operations. */ public class RdmaTransport implements SmbTransportInternal { private static final Logger log = LoggerFactory.getLogger(RdmaTransport.class); private final SmbTransportInternal delegate; private final RdmaProvider rdmaProvider;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102; static final int SMB_FILE_NAMES_INFO = 0x103; static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104; class SmbFindFileBothDirectoryInfo implements FileEntry { int nextEntryOffset; int fileIndex; long creationTime; long lastAccessTime; long lastWriteTime; long changeTime; long endOfFile;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
optional, exclusions); } private static class DefaultDependencyCoordinatesFactoryRequest extends BaseRequest<Session> implements DependencyCoordinatesFactoryRequest { private final String groupId; private final String artifactId; private final String version; private final String classifier;Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/plugin/internal/DefaultPluginManager.java
import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.component.repository.exception.ComponentLookupException; /** */ @Named @Singleton @Deprecated public class DefaultPluginManager implements PluginManager { private final PlexusContainer container; private final MavenPluginManager pluginManager; private final PluginVersionResolver pluginVersionResolver;Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
user.setName(username); user.setDisplayName(displayName); return user; } // Test implementation of AuthenticationChain for testing private static class TestAuthenticationChain implements AuthenticationChain { // Track method calls List<User> updateCalls = new ArrayList<>(); List<User> deleteCalls = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
import org.codelibs.core.lang.MethodUtil; import org.codelibs.core.lang.ModifierUtil; /** * Implementation class of {@link PropertyDesc}. * * @author higa */ public class PropertyDescImpl implements PropertyDesc { private static final Object[] EMPTY_ARGS = new Object[0]; private final String propertyName; private final Class<?> propertyType; private Method readMethod;Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 15.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
* </ul> * * <p> * Each logging method checks the log level before logging the message. * The log level can be configured in the Log4j2 configuration file. * </p> * */ public class LogHelperImpl implements LogHelper { /** Logger for this class. */ private static final Logger logger = LogManager.getLogger(LogHelperImpl.class); /** * Creates a new LogHelperImpl instance. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java
* * @author Louis Wasserman * @since 15.0 */ @GwtCompatible public abstract class ForwardingSortedMultiset<E extends @Nullable Object> extends ForwardingMultiset<E> implements SortedMultiset<E> { /** Constructor for use by subclasses. */ protected ForwardingSortedMultiset() {} @Override protected abstract SortedMultiset<E> delegate(); @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
guava/src/com/google/common/graph/EndpointPair.java
* * <p>The edge is a self-loop if, and only if, the two endpoints are equal. * * @author James Sexton * @since 20.0 */ @Beta @Immutable(containerOf = {"N"}) public abstract class EndpointPair<N> implements Iterable<N> { private final N nodeU; private final N nodeV; private EndpointPair(N nodeU, N nodeV) { this.nodeU = checkNotNull(nodeU); this.nodeV = checkNotNull(nodeV); }Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/CredentialsInternalTest.java
* It validates inputs, records calls, and delegates some behavior to collaborators * so we can verify interactions. */ static class TestCredentials implements CredentialsInternal { private final String domain; private final boolean anonymous; private final boolean guest; private final Subject subject; private final boolean failOnRefresh;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0)