- Sort Score
- Result 10 results
- Languages All
Results 1201 - 1210 of 1,637 for params2 (0.09 sec)
-
src/main/java/jcifs/SmbFileHandle.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransport.java
*/ public interface SmbTransport extends AutoCloseable { /** * @return the context this transport is attached to */ CIFSContext getContext (); /** * * @param type * @return transport instance with the given type */ <T extends SmbTransport> T unwrap ( Class<T> type ); /** * * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/path/UrlNormalizer.java
* * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface UrlNormalizer { /** * Normalizes the specified URL. * * @param url The URL to normalize, may be {@code null}. * @return The normalized URL or {@code null} if the input was {@code null}. */ String normalize(String url);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/EmptyEnumeration.java
* governing permissions and limitations under the License. */ package org.codelibs.core.collection; import java.util.Enumeration; /** * 空の {@link Enumeration}です。 * * @author higa * @param <T> * 列挙する要素の型 */ public class EmptyEnumeration<T> extends IteratorEnumeration<T> { /** * {@link EmptyEnumeration}を作成します。 */ public EmptyEnumeration() {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/InvalidKeyRuntimeException.java
public class InvalidKeyRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link InvalidKeyRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public InvalidKeyRuntimeException(final InvalidKeyException cause) { super("ECL0068", asArray(cause), cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileFilter.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; /** * * */ public interface SmbFileFilter { /** * * @param file * @return whether the given file should be included * @throws SmbException */ public boolean accept ( SmbFile file ) 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/BufferCache.java
public interface BufferCache { /** * * @return a buffer from the cache, or a new one */ byte[] getBuffer (); /** * Return a buffer to the cache * * @param buf */ void releaseBuffer ( byte[] buf );
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/msrpc/MsrpcSamrCloseHandle.java
*/ package jcifs.dcerpc.msrpc; import jcifs.dcerpc.rpc.policy_handle; /** * @author mbechler * */ public class MsrpcSamrCloseHandle extends samr.SamrCloseHandle { /** * @param handle */ public MsrpcSamrCloseHandle ( policy_handle handle ) { super(handle); this.ptype = 0; this.flags = DCERPC_FIRST_FRAG | DCERPC_LAST_FRAG; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/ExecutionListBenchmark.java
abstract ExecutionListWrapper newExecutionList(); } private ThreadPoolExecutor executorService; private CountDownLatch listenerLatch; private ExecutionListWrapper list; @Param Impl impl; @Param({"1", "5", "10"}) int numListeners; private final Runnable listener = new Runnable() { @Override public void run() { listenerLatch.countDown(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 20.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
import javax.annotation.CheckForNull; import org.checkerframework.checker.nullness.qual.Nullable; /** * A future whose value is derived from a collection of input futures. * * @param <InputT> the type of the individual inputs * @param <OutputT> the type of the output (i.e. this) future */ @GwtCompatible @ElementTypesAreNonnullByDefault @SuppressWarnings(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 16.2K bytes - Viewed (0)