- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 1,637 for params2 (0.06 sec)
-
src/main/java/org/codelibs/core/io/LineIterator.java
} /** * インスタンスを構築します。 * * @param reader * 文字列を読み込む{@link Reader}。{@literal null}であってはいけません */ public LineIterator(final Reader reader) { assertArgumentNotNull("reader", reader); this.reader = new BufferedReader(reader); } /** * インスタンスを構築します。 * * @param reader
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
* * <p>This method calls {@link Collection#removeAll} if {@code iterable} is a collection, and * {@link Iterators#removeAll} otherwise. * * @param removeFrom the iterable to (potentially) remove elements from * @param elementsToRemove the elements to remove * @return {@code true} if any element was removed from {@code iterable} */ @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 24 19:38:27 UTC 2024 - 42.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java
private final boolean timeoutSpecified; /** * @param name * */ public FsctlPipeWaitRequest ( String name ) { this.nameBytes = name.getBytes(StandardCharsets.UTF_16LE); this.timeoutSpecified = false; this.timeout = 0; } /** * @param name * @param timeout * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodDetailRenderer.java
for (int i = 0; i < parameters.size(); i++) { ParameterMetaData param = parameters.get(i); if (i > 0) { title.appendChild(document.createTextNode(", ")); } title.appendChild(linkRenderer.link(param.getType(), listener)); title.appendChild(document.createTextNode(" " + param.getName())); } title.appendChild(document.createTextNode(")"));
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphConnections.java
* a {@link Graph}. * * @author James Sexton * @param <N> Node parameter type * @param <V> Value parameter type */ @ElementTypesAreNonnullByDefault interface GraphConnections<N, V> { Set<N> adjacentNodes(); Set<N> predecessors(); Set<N> successors(); /** * Returns an iterator over the incident edges. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 2.4K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/primitives/UnsignedBytesBenchmark.java
private byte[] ba4; private Comparator<byte[]> javaImpl; private Comparator<byte[]> unsafeImpl; // 4, 8, 64, 1K, 1M, 1M (unaligned), 64M, 64M (unaligned) // @Param({"4", "8", "64", "1024", "1048576", "1048577", "6710884", "6710883"}) @Param({"4", "8", "64", "1024"}) private int length; @BeforeExperiment void setUp() throws Exception { Random r = new Random(); ba1 = new byte[length];
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/BufferCacheImpl.java
private final int bufferSize; private int freeBuffers = 0; /** * * @param cfg */ public BufferCacheImpl ( Configuration cfg ) { this(cfg.getBufferCacheSize(), cfg.getMaximumBufferSize()); } /** * @param maxBuffers * @param maxSize * */ public BufferCacheImpl ( int maxBuffers, int maxSize ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jan 24 11:40:34 UTC 2021 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
/** * */ public class NtTransQuerySecurityDesc extends SmbComNtTransaction { int fid; int securityInformation; /** * * @param config * @param fid * @param securityInformation */ public NtTransQuerySecurityDesc ( Configuration config, int fid, int securityInformation ) { super(config, NT_TRANSACT_QUERY_SECURITY_DESC); this.fid = fid;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.9K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/StringSource.java
* * @param content The String representation, may be empty or {@code null}. */ public StringSource(CharSequence content) { this(content, null); } /** * Creates a new source backed by the specified string. * * @param content The String representation, may be empty or {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadata.java
* * @return the repository */ ArtifactRepository getRepository(); /** * Set the repository the metadata was located in. * * @param remoteRepository the repository */ void setRepository(ArtifactRepository remoteRepository); /** * Get the repository metadata associated with this marker. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0)