- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 1,633 for param7 (0.15 sec)
-
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
private long changeTime; private int attributes; /** * */ public FileBasicInfo () {} /** * @param create * @param lastAccess * @param lastWrite * @param change * @param attributes */ public FileBasicInfo ( long create, long lastAccess, long lastWrite, long change, int attributes ) { this.createTime = create;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java
return importedFrom; } /** * Merges the {@code source} location into the {@code target} location. * * @param target the target location * @param source the source location * @param sourceDominant the boolean indicating of {@code source} is dominant compared to {@code target} * @return the merged location */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 15 13:24:49 UTC 2024 - 6.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/RandomAccessFileTest.java
if ( offBuf[ i ] != 0 ) { fail("Not zero @ " + i); } } } /** * @param bufSize * @param length * @param is * @throws IOException */ static void verifyRandom ( int bufSize, long length, SmbRandomAccess is ) throws IOException { long start = System.currentTimeMillis();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java
* * @param model The model to wrap, may be {@code null}. */ ModelData(Source source, Model model) { this.source = source; this.model = model; } /** * Creates a new container for the specified model. * * @param model The model to wrap, may be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ReaderUtil.java
public abstract class ReaderUtil { /** デフォルトのバッファサイズ */ private static final int BUF_SIZE = 4096; /** * 指定のエンコーディングでファイルから入力する{@link Reader}を作成します。 * * @param is * 入力ストリーム。{@literal null}であってはいけません * @param encoding * 入力ストリームのエンコーディング。{@literal null}や空文字列であってはいけません * @return ファイルかへ出力する{@link Reader} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiation.java
private final SmbNegotiationResponse response; private final byte[] negoReqBuffer; private final byte[] negoRespBuffer; /** * @param request * @param response * @param negoRespBuffer * @param negoReqBuffer * */ public SmbNegotiation ( SmbNegotiationRequest request, SmbNegotiationResponse response, byte[] negoReqBuffer, byte[] negoRespBuffer ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.native.js
/** * @param {?string} str * @return {boolean} Whether the given string is null or is the empty string. * @public */ Platform.stringIsNullOrEmpty = function(str) { return !str; }; /** * @param {?string} str * @return {string} Original str, if it is non-null. Otherwise empty string. */ Platform.nullToEmpty = function(str) { return str || ""; }; /** * @param {?string} str
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Mar 25 14:03:03 UTC 2020 - 527 bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
/** * Converts a BigInteger to either an IPv4 or IPv6 address. If the IP is IPv4, it must be * constrained to 32 bits, otherwise it is constrained to 128 bits. * * @param address the address represented as a big integer * @param isIpv6 whether the created address should be IPv4 or IPv6 * @return the BigInteger converted to an address
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/hash/HashFunctionBenchmark.java
*/ public class HashFunctionBenchmark { // Use a statically configured random instance for all of the benchmarks private static final Random random = new Random(42); @Param({"10", "1000", "100000", "1000000"}) private int size; @Param HashFunctionEnum hashFunctionEnum; private byte[] testBytes; @BeforeExperiment void setUp() { testBytes = new byte[size]; random.nextBytes(testBytes); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.3K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBenchmark.java
import com.google.caliper.Benchmark; import com.google.caliper.Param; import java.lang.reflect.Constructor; import java.util.concurrent.BlockingQueue; /** * Benchmarks for {@link Monitor}. * * @author Justin T. Sampson */ public class MonitorBenchmark { @Param({"10", "100", "1000"}) int capacity; @Param({"Array", "Priority"}) String queueType; @Param boolean useMonitor;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2K bytes - Viewed (0)