- Sort Score
- Result 10 results
- Languages All
Results 621 - 630 of 1,668 for complements (0.05 sec)
-
src/main/java/org/codelibs/core/collection/IteratorEnumeration.java
import java.util.Iterator; /** * {@link Iterator}を {@link Enumeration}にするためのアダブタです。 * * @author higa * @param <T> * 列挙する要素の型 */ public class IteratorEnumeration<T> implements Enumeration<T> { /** 反復子 */ protected final Iterator<T> iterator; /** * {@link IteratorEnumeration}を作成します。 * * @param iterator * 反復子。{@literal null}であってはいけません
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponse.java
import jcifs.Decodable; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class SrvCopyChunkCopyResponse implements Decodable { private int chunksWritten; private int chunkBytesWritten; private int totalBytesWritten; /** * @return the chunkBytesWritten */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Tables.java
} static final class ImmutableCell< R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object> extends AbstractCell<R, C, V> implements Serializable { @ParametricNullness private final R rowKey; @ParametricNullness private final C columnKey; @ParametricNullness private final V value; ImmutableCell(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
*/ package org.codelibs.fess.app.pager; import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; public class WebConfigPager implements Serializable { private static final long serialVersionUID = 1L; public static final int DEFAULT_PAGE_SIZE = 20; public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java
* @since 4.0 */ @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingBlockingQueue<E> extends ForwardingQueue<E> implements BlockingQueue<E> { /** Constructor for use by subclasses. */ protected ForwardingBlockingQueue() {} @Override protected abstract BlockingQueue<E> delegate(); @CanIgnoreReturnValue @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/CollectionTestSuiteBuilder.java
.withTearDown(parentBuilder.getTearDown()) .createTestSuite()); } return derivedSuites; } static class ReserializedCollectionGenerator<E> implements TestCollectionGenerator<E> { final OneSizeTestContainerGenerator<Collection<E>, E> gen; private ReserializedCollectionGenerator(OneSizeTestContainerGenerator<Collection<E>, E> gen) { this.gen = gen; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 18 22:49:45 UTC 2021 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponse.java
import jcifs.internal.util.SMBUtil; import jcifs.smb.NtStatus; /** * @author mbechler * */ public class Smb2ChangeNotifyResponse extends ServerMessageBlock2Response implements NotifyResponse { private List<FileNotifyInformation> notifyInformation = new ArrayList<>(); /** * @param config */ public Smb2ChangeNotifyResponse ( Configuration config ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:13:17 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
*/ package jcifs.internal.fscc; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.util.SMBUtil; /** * */ public class FileStandardInfo implements BasicFileInformation { private long allocationSize; private long endOfFile; private int numberOfLinks; private boolean deletePending; private boolean directory; @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java
import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; /** * */ public class SmbComQueryInformationResponse extends ServerMessageBlock implements SmbBasicFileInfo { private int fileAttributes = 0x0000; private long lastWriteTime = 0L; private long serverTimeZoneOffset; private int fileSize = 0; /** *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
return new DefaultVersionResolverRequest(session, artifactCoordinates, repositories); } private static class DefaultVersionResolverRequest extends BaseRequest implements VersionRangeResolverRequest { private final ArtifactCoordinates artifactCoordinates; private final List<RemoteRepository> repositories; @SuppressWarnings("checkstyle:ParameterNumber")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 4.2K bytes - Viewed (0)