- Sort Score
- Result 10 results
- Languages All
Results 3301 - 3310 of 5,931 for publish (0.04 sec)
-
guava-testlib/src/com/google/common/collect/testing/features/ConflictingRequirementsException.java
*/ @GwtCompatible public class ConflictingRequirementsException extends Exception { private final Set<Feature<?>> conflicts; private final Object source; public ConflictingRequirementsException( String message, Set<Feature<?>> conflicts, Object source) { super(message); this.conflicts = conflicts; this.source = source; } public Set<Feature<?>> getConflicts() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 1.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/eventbus/outside/BaseSubscriberFinderTest.java
import java.util.ArrayList; import java.util.List; public class BaseSubscriberFinderTest extends AbstractEventBusTest<Subscriber> { static class Subscriber { final List<Object> nonSubscriberEvents = new ArrayList<>(); final List<Object> subscriberEvents = new ArrayList<>(); public void notASubscriber(Object o) { nonSubscriberEvents.add(o); } @Subscribe public void subscriber(Object o) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* objects and provides methods to begin tracking, record events, and * finalize statistics collection. * */ public class CrawlerStatsHelper { /** * Creates a new instance of CrawlerStatsHelper. */ public CrawlerStatsHelper() { // Default constructor } /** Logger instance for this class. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/RegularContiguousSet.java
return false; } } @Override public boolean containsAll(Collection<?> targets) { return Collections2.containsAllImpl(this, targets); } @Override public boolean isEmpty() { return false; } @Override @SuppressWarnings("unchecked") // TODO(cpovirk): Use a shared unsafeCompare method. public ContiguousSet<C> intersection(ContiguousSet<C> other) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterService.java
* @param name The name. * @param type The type. */ public OpenSearchUrlFilterService(final String name, final String type) { index = name + "." + type; } /** * Initializes the service. */ @PostConstruct public void init() { fesenClient.addOnConnectListener(() -> createMapping("filter"));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestStringListGenerator.java
/** * TODO: javadoc. * * @author Kevin Bourrillion */ @GwtCompatible @NullMarked public abstract class TestStringListGenerator implements TestListGenerator<String> { @Override public SampleElements<String> samples() { return new Strings(); } @Override public List<String> create(Object... elements) { String[] array = new String[elements.length]; int i = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/TestStringMultisetGenerator.java
/** * Create multisets of strings for tests. * * @author Jared Levy */ @GwtCompatible @NullMarked public abstract class TestStringMultisetGenerator implements TestMultisetGenerator<String> { @Override public SampleElements<String> samples() { return new Strings(); } @Override public Multiset<String> create(Object... elements) { String[] array = new String[elements.length]; int i = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/SqlDateConverter.java
/** * Converter for SQL dates. * * @author higa */ public class SqlDateConverter implements Converter { /** * The date pattern. */ protected String pattern; /** * Constructs an instance. * * @param pattern * the date pattern */ public SqlDateConverter(final String pattern) { assertArgumentNotEmpty("pattern", pattern);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/exception/NullArgumentExceptionTest.java
/** * @author wyukawa * */ public class NullArgumentExceptionTest { @Before public void setUp() throws Exception { LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testErrorMessage_ja() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
import org.lastaflute.web.ruts.process.ActionRuntime; /** * Admin action for Log. */ public class AdminLogAction extends FessAdminAction { /** * Default constructor. */ public AdminLogAction() { super(); } /** The role name for log administration. */ public static final String ROLE = "admin-log"; @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0)