- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 3,742 for Extend (0.03 sec)
-
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java
*/ package org.apache.maven.api.spi; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; @Experimental public class ModelParserException extends MavenException { /** * The one-based index of the line containing the error. */ private final int lineNumber; /** * The one-based index of the column containing the error. */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/MsWordExtractorTest.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class MsWordExtractorTest extends PlainTestCase { private static final Logger logger = LogManager.getLogger(MsWordExtractorTest.class); public MsWordExtractor msWordExtractor; @Override protected void setUp() throws Exception {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsPublisherExtractor.java
import org.codelibs.fess.crawler.exception.ExtractException; /** * Gets a text from . file. * * @author shinsuke * */ public class MsPublisherExtractor extends AbstractExtractor { /** * Creates a new MsPublisherExtractor instance. */ public MsPublisherExtractor() { super(); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultiset.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @return a new instance of {@link ConcurrentHashMap} * @see ConcurrentHashMap#ConcurrentHashMap(Map) */ public static <K, V> ConcurrentHashMap<K, V> newConcurrentHashMap(final Map<? extends K, ? extends V> m) { return new ConcurrentHashMap<>(m); } /** * Creates and returns a new instance of {@link ConcurrentLinkedQueue}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java
return mapGenerator; } } public static class MapSortedKeySetGenerator< K extends @Nullable Object, V extends @Nullable Object> extends MapKeySetGenerator<K, V> implements TestSortedSetGenerator<K> { private final TestSortedMapGenerator<K, V> delegate; public MapSortedKeySetGenerator(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jan 30 16:59:10 UTC 2025 - 18.2K bytes - Viewed (0) -
guava/src/com/google/common/base/Suppliers.java
*/ public static <F extends @Nullable Object, T extends @Nullable Object> Supplier<T> compose( Function<? super F, T> function, Supplier<F> supplier) { return new SupplierComposition<>(function, supplier); } private static final class SupplierComposition< F extends @Nullable Object, T extends @Nullable Object> implements Supplier<T>, Serializable {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ArrayListMultimap.java
* the underlying data structure. * * @param multimap the multimap whose contents are copied to this multimap */ public static <K extends @Nullable Object, V extends @Nullable Object> ArrayListMultimap<K, V> create(Multimap<? extends K, ? extends V> multimap) { return new ArrayListMultimap<>(multimap); } private ArrayListMultimap() { this(12, DEFAULT_VALUES_PER_KEY); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
/** * A request for resolving an artifact. * * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactResolverRequest extends Request<Session> { @Nonnull Collection<? extends ArtifactCoordinates> getCoordinates(); @Nullable List<RemoteRepository> getRepositories(); @Nonnull static ArtifactResolverRequestBuilder builder() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
} protected <ENTITY extends User> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) { return doSelectEntity(xprepareCBAsPK(id), tp); } protected UserCB xprepareCBAsPK(String id) { assertObjectNotNull("id", id); return newConditionBean().acceptPK(id); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12K bytes - Viewed (0)