- Sort Score
- Result 10 results
- Languages All
Results 1231 - 1240 of 1,637 for params1 (0.06 sec)
-
src/main/java/jcifs/smb/StaticJAASConfiguration.java
*/ public StaticJAASConfiguration () { this.options = new HashMap<>(); } /** * Initialize a static JAAS configuration with custom settings * * @param options */ public StaticJAASConfiguration ( Map<String, ?> options ) { this.options = options; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/TestUtil.java
* * <pre>assertThat(clazz, is(Xxx.class));</pre> * <p> * と書くと{@link CoreMatchers#is(Class)}が適用されて{@literal clazz}が {@literal Xxx} * のインスタンスかを検証されてしまうのでこれが必要。 * * @param clazz * 期待するクラス * @return クラスをチェックする{@link Matcher} */ public static Matcher<Object> sameClass(final Class<?> clazz) { return is((Object) clazz); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProvider.java
* * @since 4.0.0 */ @Experimental public interface SuperPomProvider extends Service { /** * Gets the super POM for the specified model version. * * @param version The model version to retrieve the super POM for (e.g. "4.0.0"), must not be {@code null}. * @return The super POM, never {@code null}. * @throws SuperPomProviderException if the super POM could not be retrieved
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Feb 28 23:54:53 UTC 2024 - 1.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Collections2.java
* all elements are so contained, {@code true} is returned, otherwise {@code false}. * * @param self a collection which might contain all elements in {@code c} * @param c a collection whose elements might be contained by {@code self} */ static boolean containsAllImpl(Collection<?> self, Collection<?> c) { for (Object o : c) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 23.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
final SearchForm params = new SearchForm() { @Override public int getPageSize() { return 0; } @Override public int getStartPosition() { return 0; } }; params.q = query;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 40.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/Feature.java
package com.google.common.collect.testing.features; import com.google.common.annotations.GwtCompatible; import java.util.Set; /** * Base class for enumerating the features of an interface to be tested. * * @param <T> The interface whose features are to be enumerated. * @author George van den Driessche */ @GwtCompatible public interface Feature<T> { /** Returns the set of features that are implied by this feature. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbUnsupportedOperationException.java
/** * */ public SmbUnsupportedOperationException () { super("Operation is not supported with the negotiated capabilities"); } /** * * @param msg */ public SmbUnsupportedOperationException ( String msg ) { super(msg); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/ResourceFilter.java
*/ package jcifs; /** * Filter based on a resource instance * * @author mbechler * */ public interface ResourceFilter { /** * * @param resource * @return whether the given resource should be included * @throws CIFSException */ public boolean accept ( SmbResource resource ) throws CIFSException;
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/org/codelibs/core/exception/IORuntimeException.java
*/ public class IORuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1533554330702215389L; /** * {@link IORuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public IORuntimeException(final IOException cause) { super("ECL0040", asArray(cause), cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NamingRuntimeException.java
*/ public class NamingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NamingRuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public NamingRuntimeException(final NamingException cause) { super("ECL0066", asArray(cause), cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0)