- Sort Score
- Result 10 results
- Languages All
Results 791 - 800 of 1,633 for param7 (0.05 sec)
-
src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java
/** * @return create cancel request */ CommonServerMessageBlockRequest createCancel (); /** * @param next * @return whether to allow chaining */ boolean allowChain ( CommonServerMessageBlockRequest next ); /** * @param t */ void setTid ( int t ); /** * * @return custom response timeout for this request */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/base/FinalizableWeakReference.java
@ElementTypesAreNonnullByDefault public abstract class FinalizableWeakReference<T> extends WeakReference<T> implements FinalizableReference { /** * Constructs a new finalizable weak reference. * * @param referent to weakly reference * @param queue that should finalize the referent */ protected FinalizableWeakReference(@CheckForNull T referent, FinalizableReferenceQueue queue) { super(referent, queue.queue); queue.cleanUp(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ParseRuntimeException.java
/** * {@link ParseRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public ParseRuntimeException(final ParseException cause) { super("ECL0050", asArray(cause), cause); } /** * {@link ParseRuntimeException}を作成します。 * * @param s * 解析できなかった文字列 */ public ParseRuntimeException(final String s) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFilenameFilter.java
*/ package jcifs.smb; /** * * */ public interface SmbFilenameFilter { /** * * @param dir * @param name * @return whether the given filename should be included * @throws SmbException */ public boolean accept ( SmbFile dir, String name ) throws SmbException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcSecurityProvider.java
import jcifs.dcerpc.ndr.NdrBuffer; /** * */ public interface DcerpcSecurityProvider { /** * * @param outgoing * @throws DcerpcException */ void wrap ( NdrBuffer outgoing ) throws DcerpcException; /** * * @param incoming * @throws DcerpcException */ void unwrap ( NdrBuffer incoming ) throws DcerpcException;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
throw new NamingRuntimeException(ex); } } /** * 指定した初期コンテキストから指定されたオブジェクトを取得して返します。 * * @param ctx * 初期コンテキスト。{@literal null}であってはいけません * @param jndiName * 検索するオブジェクトの名前。{@literal null}や空文字列であってはいけません * @return <code>jndiName</code>にバインドされているオブジェクト * @throws NamingRuntimeException
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEventCatapult.java
*/ @Deprecated(since = "4.0.0") interface ModelBuildingEventCatapult { /** * Notifies the specified listener of the given event. * * @param listener The listener to notify, must not be {@code null}. * @param event The event to fire, must not be {@code null}. */ void fire(ModelBuildingListener listener, ModelBuildingEvent event);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLogoffAndX.java
import jcifs.internal.smb1.ServerMessageBlock; /** * */ public class SmbComLogoffAndX extends AndXServerMessageBlock { /** * * @param config * @param andx */ public SmbComLogoffAndX ( Configuration config, ServerMessageBlock andx ) { super(config, SMB_COM_LOGOFF_ANDX, andx); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/GraphConflictResolver.java
* between any two nodes, if multiple exists. Uses scope relationships, defined * in <code>ArtifactScopeEnum</code> * * @param graph the "dirty" graph to be simplified via conflict resolution * @param scope scope for which the graph should be resolved * * @return resulting "clean" graph for the specified scope * * @since 3.0 */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
android/guava/src/com/google/common/math/StatsAccumulator.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 15.8K bytes - Viewed (0)