- Sort Score
- Result 10 results
- Languages All
Results 731 - 740 of 1,826 for paras (0.14 sec)
-
src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java
* */ public static final int SMB2_LOCKFLAG_FAIL_IMMEDIATELY = 0x10; private long offset; private long length; private int flags; /** * @param offset * @param length * @param flags */ public Smb2Lock ( long offset, long length, int flags ) { this.offset = offset; this.length = length; this.flags = flags; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CaseInsensitiveMap.java
* * @author higa 値の型 * @param <V> * 値の型 */ public class CaseInsensitiveMap<V> extends ArrayMap<String, V> { private static final long serialVersionUID = 1L; /** * {@link CaseInsensitiveMap}を作成します。 */ public CaseInsensitiveMap() { } /** * {@link CaseInsensitiveMap}を作成します。 * * @param capacity * 初期容量 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipe.java
import jcifs.internal.util.SMBUtil; /** * */ public class TransPeekNamedPipe extends SmbComTransaction { private int fid; /** * * @param config * @param pipeName * @param fid */ public TransPeekNamedPipe ( Configuration config, String pipeName, int fid ) { super(config, SMB_COM_TRANSACTION, TRANS_PEEK_NAMED_PIPE); this.name = pipeName;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/LifecycleBindingsInjector.java
* in the model's plugin section need to be subjected to the model's plugin management. * * @param model The model into which to inject the default plugin executions for its packaging, must not be * <code>null</code>. * @param request The model building request that holds further settings, must not be {@code null}. * @param problems The container used to collect problems that were encountered, must not be {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
private final Object[] methodArgs; private final Class<?>[] paramTypes; /** * {@link ConstructorNotFoundRuntimeException}を作成します。 * * @param targetClass * ターゲットクラス * @param methodArgs * 引数の並び */ public ConstructorNotFoundRuntimeException(final Class<?> targetClass, final Object[] methodArgs) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/background-tasks.md
# Tarefas em segundo plano Você pode definir tarefas em segundo plano a serem executadas _ após _ retornar uma resposta. Isso é útil para operações que precisam acontecer após uma solicitação, mas que o cliente realmente não precisa esperar a operação ser concluída para receber a resposta. Isso inclui, por exemplo: - Envio de notificações por email após a realização de uma ação:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.3K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java
* Ordering#sortedCopy} and {@link Ordering#immutableSortedCopy}, as well as for automated code * suggestions. * */ public class SortedCopyBenchmark { @Param({"1", "10", "1000", "1000000"}) int size; // logarithmic triangular @Param boolean mutable; @Param InputOrder inputOrder; enum InputOrder { SORTED { @Override void arrange(List<Integer> list) { sort(list); } },
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
private int completionFilter; /** * @param config * @param fileId */ public Smb2ChangeNotifyRequest ( Configuration config, byte[] fileId ) { super(config, SMB2_CHANGE_NOTIFY); this.outputBufferLength = config.getNotifyBufferSize(); this.fileId = fileId; } /** * @param notifyFlags * the notifyFlags to set */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcException.java
DcerpcException ( int error ) { super(getMessageByDcerpcError(error)); this.error = error; } /** * @param msg */ public DcerpcException ( String msg ) { super(msg); } /** * @param msg * @param rootCause */ public DcerpcException ( String msg, Throwable rootCause ) { super(msg, rootCause); } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 09:02:44 UTC 2020 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multiset.java
* current count is not {@code oldCount}, no change is made. * * @param element the element to conditionally set the count of; may be null only if explicitly * allowed by the implementation * @param oldCount the expected present count of the element in this multiset * @param newCount the desired count of the element in this multiset
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 21K bytes - Viewed (0)