- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 2,954 for LIST (0.19 sec)
-
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
* * @param repositories a list of repositories * @return corresponding effective repositories * @since 3.6.1 */ public List<ArtifactRepository> getEffectiveRepositories(List<ArtifactRepository> repositories) { if (repositories == null) { return null; } Map<String, List<ArtifactRepository>> reposByKey = new LinkedHashMap<>();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 33.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java
E[] createArray(int length); /** * Returns the iteration ordering of elements, given the order in which they were added to the * container. This method may return the original list unchanged, the original list modified in * place, or a different list. * * <p>If the order is non-deterministic, as with {@link java.util.HashSet}, this method can return * its input unmodified. Provided that the test suite is built without {@link
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingResult.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.project; import java.io.File; import java.util.Collections; import java.util.List; import org.apache.maven.model.building.ModelProblem; /** * Collects the output of the project builder. * * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 3.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java
} // -- Object getConfiguration() /** * Method getGoals. * * @return List */ public java.util.List<String> getGoals() { if (this.goals == null) { this.goals = new java.util.ArrayList<String>(); } return this.goals; } // -- java.util.List<String> getGoals() /** * Method removeGoal. * * @param string a string object.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
cmd/object-api-datatypes.go
NextVersionIDMarker string // List of objects info for this request. Objects []ObjectInfo // List of prefixes for this request. Prefixes []string } // ListObjectsInfo - container for list objects. type ListObjectsInfo struct { // Indicates whether the returned list objects response is truncated. A // value of true indicates that the list was truncated. The list can be truncated
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 21.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CoreExtensionSelector.java
* * @param <C> The context type. */ public interface CoreExtensionSelector<C extends LookupContext> { /** * Selects core extensions to be loaded from list of all sources detected. */ @Nonnull List<CoreExtension> selectCoreExtensions(LookupInvoker<C> invoker, C context);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Mar 13 12:50:59 UTC 2025 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java
} /** * Prompts the user for a string using a list of possible values. * * @param message the message to display * @param possibleValues the list of possible values * @return the string entered by the user * @throws PrompterException if an exception occurs */ @Nonnull default String prompt(@Nullable String message, @Nullable List<String> possibleValues) throws PrompterException {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java
*/ private ClassRealm createRealm( String baseRealmId, RealmType type, ClassLoader parent, List<String> parentImports, Map<String, ClassLoader> foreignImports, List<Artifact> artifacts) { List<ClassRealmConstituent> constituents = new ArrayList<>(artifacts == null ? 0 : artifacts.size()); if (artifacts != null && !artifacts.isEmpty()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
List<String> results = converter.convert(text, field, "en", "ja"); assertNotNull(results); // With multiple languages, should use ReadingConverterChain } @Test public void testConvertWithEmptyText() throws IOException { // Test convert with empty text String text = ""; String field = "content";Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
// GET /api/admin/storage/list/{id} // PUT /api/admin/storage/list/{id} /** * Lists files and directories in storage. * @param id The ID of the directory to list. * @return A JSON response containing the list of files and directories. */ @Execute public JsonResponse<ApiResult> list(final OptionalThing<String> id) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0)