- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 342 for ingested (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/DefaultArtifactFilterManager.java
import org.apache.maven.extension.internal.CoreExports; /** */ @Named @Singleton @Deprecated public class DefaultArtifactFilterManager implements ArtifactFilterManager { // this is a live injected collection protected final List<ArtifactFilterManagerDelegate> delegates; protected Set<String> excludedArtifacts; private final Set<String> coreArtifacts; @Inject
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java
assertNotNull(exception); assertTrue(exception instanceof java.io.Serializable); } public void test_nestedExceptions() { // Test nested exception handling Exception innerCause = new IllegalArgumentException("Invalid parameter"); RuntimeException middleCause = new RuntimeException("Processing failed", innerCause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.2K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import java.io.IOException; import java.util.Arrays; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.NameServiceClient; import jcifs.NetbiosAddress; import jcifs.util.Hexdump; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/MojoExecutionScoped.java
import static java.lang.annotation.RetentionPolicy.RUNTIME; /** * Indicates that the annotated bean has a lifespan limited to a given mojo execution, * which means each mojo execution will result in a different instance being injected. * <p> * The following objects will be bound to the mojo execution scope: * <ul> * <li>{@code org.apache.maven.api.MojoExecution}</li> * <li>{@code org.apache.maven.api.Project}</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:14:46 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Qualifier.java
* Meta-annotation that marks other annotations as qualifier annotations. * <p> * Qualifiers are used to distinguish between multiple beans of the same type, * allowing for more precise control over which implementation should be injected. * Custom qualifier annotations should be annotated with {@code @Qualifier}. * <p> * Example of creating a custom qualifier: * <pre> * {@literal @}Qualifier * {@literal @}Retention(RUNTIME)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java
} /** * @see AbstractContainerTester#resetContainer() */ protected void resetCollection() { resetContainer(); } /** * @return an array of the proper size with {@code null} inserted into the middle element. */ protected E[] createArrayWithNullElement() { E[] array = createSamplesArray(); array[getNullLocation()] = null; return array; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 2.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java
} /** * @see AbstractContainerTester#resetContainer() */ protected void resetCollection() { resetContainer(); } /** * @return an array of the proper size with {@code null} inserted into the middle element. */ protected E[] createArrayWithNullElement() { E[] array = createSamplesArray(); array[getNullLocation()] = null; return array; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 2.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MultimapsFilterEntriesAsMapTest.java
import java.util.Map.Entry; import java.util.Objects; import org.jspecify.annotations.NullUnmarked; /** * Tests for Multimaps.filterEntries().asMap(). * * @author Jared Levy */ @GwtIncompatible(value = "untested") @NullUnmarked public class MultimapsFilterEntriesAsMapTest extends AbstractMultimapAsMapImplementsMapTest { private static final Predicate<Entry<String, Integer>> PREDICATE = new Predicate<Entry<String, Integer>>() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 2.1K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Named.java
* of the same type are available. * <p> * This annotation can be used in conjunction with {@link Inject} to specify * which implementation should be injected when multiple candidates exist. * The value represents a unique identifier for the dependency. * <p> * Example usage: * <pre> * {@literal @}Inject * {@literal @}Named("mysql")
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static NotificationHelper getNotificationHelper() { return getComponent(NOTIFICATION_HELPER); } /** * Gets the ingest factory component. * @return The ingest factory. */ public static IngestFactory getIngestFactory() { return getComponent(INGEST_FACTORY); } /** * Gets the script engine factory component.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0)