- Sort Score
- Result 10 results
- Languages All
Results 4331 - 4340 of 5,836 for Public (0.04 sec)
-
src/main/java/org/codelibs/core/exception/NamingRuntimeException.java
* * @author higa */ public class NamingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * Creates a {@link NamingRuntimeException}. * * @param cause * The cause of the exception */ public NamingRuntimeException(final NamingException cause) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchPaddingRuntimeException.java
* * @author shinsuke */ public class NoSuchPaddingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * Creates a {@link NoSuchPaddingRuntimeException}. * * @param cause the underlying exception */ public NoSuchPaddingRuntimeException(final NoSuchPaddingException cause) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
import org.codelibs.fess.crawler.container.StandardCrawlerContainer; import org.dbflute.utflute.core.PlainTestCase; public class HandlerTest extends PlainTestCase { @Override protected void setUp() throws Exception { super.setUp(); new StandardCrawlerContainer(); } public void test_protocol() throws Exception { URL url = new URL("storage:/home/foo");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/JdkBackedImmutableMultiset.java
this.delegateMap = delegateMap; this.entries = entries; this.size = size; } @Override public int count(@Nullable Object element) { return delegateMap.getOrDefault(element, 0); } @LazyInit private transient @Nullable ImmutableSet<E> elementSet; @Override public ImmutableSet<E> elementSet() { ImmutableSet<E> result = elementSet;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 08 13:05:15 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TablesTransformValuesColumnTest.java
import com.google.common.collect.TableCollectionTest.ColumnTests; import java.util.Map; import org.jspecify.annotations.NullMarked; @GwtCompatible @NullMarked public class TablesTransformValuesColumnTest extends ColumnTests { public TablesTransformValuesColumnTest() { super(false, false, true, true, false); } @Override Table<String, Character, Integer> makeTable() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/zip/ZipFileUtilTest.java
import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; import junit.framework.TestCase; /** * @author koichik */ public class ZipFileUtilTest extends TestCase { /** * @throws Exception */ public void testToJarFilePath() throws Exception { final URL url = new URL(null, "zip:/Program Files/foo.zip!/", new URLStreamHandler() { @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BaseRequest.java
this.session = requireNonNull(session, "session cannot be null"); this.trace = trace; } @Nonnull @Override public S getSession() { return session; } @Override public RequestTrace getTrace() { return trace; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SystemUtil.java
* methods specific to the Fess application. */ public class SystemUtil extends org.codelibs.core.lang.SystemUtil { /** * Private constructor to prevent instantiation. */ private SystemUtil() { } /** * Gets the HTTP address of the search engine. * * @return The search engine HTTP address. */ public static String getSearchEngineHttpAddress() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java
* It serves as a data transfer object between the web layer and the crawling * service components. */ public class StartCrawlingForm { /** * Default constructor. */ public StartCrawlingForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ArrayTableRowMapTest.java
import com.google.common.collect.TableCollectionTest.RowMapTests; import java.util.Map; import org.jspecify.annotations.NullUnmarked; @GwtIncompatible // TODO(hhchan): ArrayTable @NullUnmarked public class ArrayTableRowMapTest extends RowMapTests { public ArrayTableRowMapTest() { super(true, false, false, false); } @Override Table<String, Integer, Character> makeTable() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.3K bytes - Viewed (0)