- Sort Score
- Result 10 results
- Languages All
Results 671 - 680 of 1,633 for param6 (0.04 sec)
-
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) -
android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java
} } return list; } // Modification Operations /** * Adds a number of occurrences of the specified element to this multiset. * * @param element the element to add * @param occurrences the number of occurrences to add * @return the previous count of the element before the operation; possibly zero
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 21.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
private final ModelBuildingResult result; /** * Creates a new exception with the specified problems. * * @param model The model that could not be built, may be {@code null}. * @param modelId The identifier of the model that could not be built, may be {@code null}. * @param problems The problems that cause this exception, may be {@code null}.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
}); } public DictionaryFile<? extends DictionaryItem>[] getDictionaryFiles() { try (CurlResponse response = ComponentUtil.getCurlHelper().get("/_configsync/file").param("fields", "path,@timestamp") .param("size", ComponentUtil.getFessConfig().getPageDictionaryMaxFetchSize()).execute()) { final Map<String, Object> contentMap = response.getContent(OpenSearchCurl.jsonParser());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5K bytes - Viewed (0) -
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) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* traversal order of the collection's iterator. * * @param capacity the capacity of this queue * @param fair if {@code true} then queue accesses for threads blocked on insertion or removal, * are processed in FIFO order; if {@code false} the access order is unspecified. * @param c the collection of elements to initially contain
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 19 19:24:36 UTC 2023 - 22.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
/** * */ private static final int SIGNATURE_OFFSET = 48; private static final int SIGNATURE_LENGTH = 16; private final Mac digest; /** * @param sessionKey * @param dialect * @param preauthIntegrityHash * @throws GeneralSecurityException * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Aug 17 17:34:29 UTC 2021 - 4.9K bytes - Viewed (0)