- Sort Score
- Result 10 results
- Languages All
Results 1611 - 1620 of 3,920 for extenders (0.07 sec)
-
guava-tests/test/com/google/common/util/concurrent/ForwardingFutureTest.java
* limitations under the License. */ package com.google.common.util.concurrent; import junit.framework.TestCase; /** Unit tests for {@link ForwardingFuture} */ public class ForwardingFutureTest extends TestCase { public void testForwarding() { ForwardingObjectTester.testForwardingObject(ForwardingFuture.class); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 892 bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/InterruptibleMonitorTest.java
*/ package com.google.common.util.concurrent; /** * Tests for {@link Monitor}'s interruptible methods. * * @author Justin T. Sampson */ public class InterruptibleMonitorTest extends MonitorTestCase { public InterruptibleMonitorTest() { super(true); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 09 22:57:07 UTC 2022 - 867 bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/UninterruptibleMonitorTest.java
*/ package com.google.common.util.concurrent; /** * Tests for {@link Monitor}'s uninterruptible methods. * * @author Justin T. Sampson */ public class UninterruptibleMonitorTest extends MonitorTestCase { public UninterruptibleMonitorTest() { super(false); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 09 22:57:07 UTC 2022 - 874 bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MaxLengthExceededException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.exception; /** * @author shinsuke * */ public class MaxLengthExceededException extends CrawlingAccessException { private static final long serialVersionUID = 1L; public MaxLengthExceededException(final String message) { super(message); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 922 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java
* * @author Kevin Bourrillion */ @SuppressWarnings("serial") // No serialization is used in this test @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public class AbstractIteratorTest extends TestCase { public void testDefaultBehaviorOfNextAndHasNext() { // This sample AbstractIterator returns 0 on the first call, 1 on the // second, then signals that it's reached the end of the data
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 15 17:36:06 UTC 2024 - 8.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractIteratorTest.java
* * @author Kevin Bourrillion */ @SuppressWarnings("serial") // No serialization is used in this test @GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault public class AbstractIteratorTest extends TestCase { public void testDefaultBehaviorOfNextAndHasNext() { // This sample AbstractIterator returns 0 on the first call, 1 on the // second, then signals that it's reached the end of the data
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 15 17:36:06 UTC 2024 - 8.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
.forEach(paths::add); } sessionBuilder.withLocalRepositoryBaseDirectories(paths); for (RepositorySystemSessionExtender extender : sessionExtenders.values()) { extender.extend(request, configProps, mirrorSelector, proxySelector, authSelector); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/GsaConfigException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class GsaConfigException extends FessSystemException { private static final long serialVersionUID = 1L; public GsaConfigException(final String message, final Throwable cause) { super(message, cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 978 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/suggest/SuggestBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.suggest; import org.codelibs.fess.app.web.admin.suggest.SuggestForm; public class SuggestBody extends SuggestForm { public Long totalWordsNum; public Long documentWordsNum; public Long queryWordsNum;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 883 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/SearchBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.webconfig; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; public class SearchBody extends BaseSearchBody { public String name; public String urls; public String description;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 869 bytes - Viewed (0)