- Sort Score
- Result 10 results
- Languages All
Results 2331 - 2340 of 5,836 for Public (0.04 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/CustomUrlFilterImplTest.java
import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class CustomUrlFilterImplTest extends PlainTestCase { public UrlFilterImpl includeFilter; public UrlFilterImpl excludeFilter; public UrlFilterImpl domainFilter; @Override protected void setUp() throws Exception { super.setUp();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TableCollectionTest.java
@Override public SampleElements<Cell<String, Integer, Character>> samples() { return new SampleElements<>( immutableCell("bar", 1, 'a'), immutableCell("bar", 2, 'b'), immutableCell("foo", 3, 'c'), immutableCell("bar", 1, 'b'), immutableCell("cat", 2, 'b')); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.5K bytes - Viewed (0) -
samples/slack/src/main/java/okhttp3/slack/OAuthSessionFactory.java
* Clients may request multiple sessions. */ public final class OAuthSessionFactory extends Dispatcher implements Closeable { private final SecureRandom secureRandom = new SecureRandom(); private final SlackApi slackApi; private MockWebServer mockWebServer; /** Guarded by this. */ private final Map<ByteString, Listener> listeners = new LinkedHashMap<>(); public OAuthSessionFactory(SlackApi slackApi) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/MultiIterator.java
*/ public static <E> Iterable<E> iterable(final Iterator<E>... iterators) { assertArgumentNotNull("iterators", iterators); return () -> new MultiIterator<>(iterators); } /** * Constructs an instance. * * @param iterators the array of {@link Iterator}s (must not be {@literal null}) */ public MultiIterator(final Iterator<E>... iterators) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RuleManagerImpl.java
* Provides methods to add, remove, check, and retrieve rules. * */ public class RuleManagerImpl implements RuleManager { /** The list of rules managed by this rule manager. */ protected final List<Rule> ruleList = new ArrayList<>(); /** * Creates a new RuleManagerImpl instance. */ public RuleManagerImpl() { // Default constructor } /* * (non-Javadoc)
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java
this.artifact = artifact; } public Artifact getArtifact() { return artifact; } public String getGroupId() { return groupId; } public String getArtifactId() { return artifactId; } public String getVersion() { return version; } public String getType() { return type; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 01 21:22:14 UTC 2025 - 10.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java
import org.codelibs.fess.crawler.exception.CrawlingAccessException; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class SitemapsHelperTest extends PlainTestCase { public SitemapsHelper sitemapsHelper; @Override protected void setUp() throws Exception { super.setUp();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 9.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Preconditions.java
* its caller has made a mistake. This allows constructs such as * * {@snippet : * public static double sqrt(double value) { * if (value < 0) { * throw new IllegalArgumentException("input is negative: " + value); * } * // calculate square root * } * } * * <p>to be replaced with the more compact * * {@snippet : * public static double sqrt(double value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 22:11:00 UTC 2025 - 53K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/search/SearchApiTests.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/HostSpecifier.java
* the documentation for {@link #fromValid(String)}. */ public static boolean isValid(String specifier) { try { HostSpecifier unused = fromValid(specifier); return true; } catch (IllegalArgumentException e) { return false; } } @Override public boolean equals(@Nullable Object other) { if (this == other) { return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6K bytes - Viewed (0)