- Sort Score
- Result 10 results
- Languages All
Results 711 - 720 of 1,637 for params2 (0.06 sec)
-
src/main/java/jcifs/util/ByteEncodable.java
/** * @author mbechler * */ public class ByteEncodable implements Encodable { private byte[] bytes; private int off; private int len; /** * @param b * @param off * @param len */ public ByteEncodable ( byte[] b, int off, int len ) { this.bytes = b; this.off = off; this.len = len; } /** * {@inheritDoc}
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/Indexed.java
/** * {@link IndexedIterator}でイテレートする要素です。 * * @author wyukawa * @param <T> * 要素の型 * @see IndexedIterator */ public class Indexed<T> { /** 要素 */ private final T element; /** 要素のインデックス */ private final int index; /** * コンストラクタ * * @param element * 要素 * @param index * 要素のインデックス */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java
/** * Transform Graph into a Collection of metadata objects that * could serve as a classpath for a particular scope * * @param dirtyGraph - dependency graph * @param scope - which classpath to extract * @param resolve - whether to resolve artifacts. * @return Collection of metadata objects in the linked subgraph of the graph which * contains the graph.getEntry() vertice
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java
/** * SHA-512 */ public static final int HASH_ALGO_SHA512 = 0x1; private int[] hashAlgos; private byte[] salt; /** * * @param config * @param hashAlgos * @param salt */ public PreauthIntegrityNegotiateContext ( Configuration config, int[] hashAlgos, byte[] salt ) { this.hashAlgos = hashAlgos; this.salt = salt; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTimestamp.java
* */ public class AvTimestamp extends AvPair { /** * @param raw */ public AvTimestamp ( byte[] raw ) { super(AvPair.MsvAvTimestamp, raw); } /** * * @param ts */ public AvTimestamp ( long ts ) { this(encode(ts)); } /** * @param ts * @return */ private static byte[] encode ( long ts ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java
* lies outside that, then {@link #escapeUnsafe} is called, otherwise no escaping is performed. * * @param replacementMap a map of characters to their escaped representations * @param safeMin the lowest character value in the safe range * @param safeMax the highest character value in the safe range */ protected ArrayBasedCharEscaper(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
} catch (final IOException e) { throw new IORuntimeException(e); } } /** * 指定されたJarファイルエントリの内容を読み込むための入力ストリームを返します。 * * @param file * Jarファイル。{@literal null}であってはいけません * @param entry * Jarファイルエントリ。{@literal null}であってはいけません * @return 指定されたJarファイルエントリの内容を読み込むための入力ストリーム */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
} catch (final IOException e) { throw new IORuntimeException(e); } } /** * 指定されたZipファイルエントリの内容を読み込むための入力ストリームを返します。 * * @param file * Zipファイル。{@literal null}であってはいけません * @param entry * Zipファイルエントリ。{@literal null}であってはいけません * @return 指定されたZipファイルエントリの内容を読み込むための入力ストリーム */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.1K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
return "", false } params := name.FuncType.Params args := call.Call.Args end := call.Call.End() // Avoid a crash if the number of arguments doesn't match // the number of parameters. // This will be caught when the generated file is compiled. if len(args) != len(params) { return "", false } any := false for i, param := range params { if p.needsPointerCheck(f, param.Go, args[i]) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/WriterUtil.java
/** * {@link Writer}用のユーティリティクラスです。 * * @author koichik */ public abstract class WriterUtil { /** * 指定のエンコーディングでストリームへ出力する{@link Writer}を作成します。 * * @param os * ストリーム。{@literal null}であってはいけません * @param encoding * エンコーディング。{@literal null}や空文字列であってはいけません * @return ストリームへ出力する{@link Writer} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.2K bytes - Viewed (0)