- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 3,211 for List (0.03 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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java
// GET /api/admin/log/files @Execute public JsonResponse<ApiResult> files() { final List<Map<String, Object>> list = getLogFileItems(); return asJson(new ApiResult.ApiLogFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result()); } // GET /api/admin/log/file/{id} @Execute public StreamResponse get$file(final String id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingException.java
import java.io.StringWriter; import java.util.ArrayList; import java.util.List; import org.apache.maven.building.Problem; /** * @since 3.3.0 * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.ToolchainsBuilder} instead */ @Deprecated(since = "4.0.0") public class ToolchainsBuildingException extends Exception { private final List<Problem> problems; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SetTestSuiteBuilder.java
return new SetTestSuiteBuilder<E>().usingGenerator(generator); } @SuppressWarnings("rawtypes") // class literals @Override protected List<Class<? extends AbstractTester>> getTesters() { List<Class<? extends AbstractTester>> testers = copyToList(super.getTesters()); testers.add(CollectionSerializationEqualTester.class); testers.add(SetAddAllTester.class);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
Artifact rootArtifact; DependencyCoordinates root; List<DependencyCoordinates> dependencies = Collections.emptyList(); List<DependencyCoordinates> managedDependencies = Collections.emptyList(); boolean verbose; PathScope pathScope; Predicate<PathType> pathTypeFilter; List<RemoteRepository> repositories; DependencyResolverRequestBuilder() {}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 17.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/ReferenceEntry.java
@CheckForNull K getKey(); /* * Used by entries that use access order. Access entries are maintained in a doubly-linked list. * New entries are added at the tail of the list at write time; stale entries are expired from * the head of the list. */ /** Returns the time that this entry was last accessed, in ns. */ @SuppressWarnings("GoodTime") long getAccessTime();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 3.5K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.joblog_delete_all_cancel=Cancel labels.dict_configuration=Dictionary List labels.dict_list_title=Dictionary List labels.dict_list_link=Dictionaries labels.dictionary_name=Name labels.dictionary_type=Type labels.dict_synonym_configuration=Synonym List labels.dict_synonym_title=Synonym List labels.dict_synonym_list_link=List labels.dict_synonym_link_create=Create New labels.dict_synonym_link_edit=Edit
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* @return the local repository instance */ @Nonnull LocalRepository getLocalRepository(); /** * Retrieves a list of remote repositories associated with this session. * * @return a list of remote repositories */ @Nonnull List<RemoteRepository> getRemoteRepositories(); /** * Retrieves the session data associated with this session. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 16:43:07 UTC 2024 - 36.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
private final Process p; private final InputStreamThread ist; private final AtomicBoolean executed = new AtomicBoolean(false); private final long timeout; public ProcessDestroyer(final Process p, final InputStreamThread ist, final long timeout) { this.p = p; this.ist = ist; this.timeout = timeout; } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 9.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
ClassWorld classWorld = context.protoLookup.lookup(ClassWorld.class); ClassRealm coreRealm = classWorld.getClassRealm("plexus.core"); List<Path> extClassPath = parseExtClasspath(context); CoreExtensionEntry coreEntry = CoreExtensionEntry.discoverFrom(coreRealm); List<CoreExtensionEntry> extensions = loadCoreExtensions(context, coreRealm, coreEntry.getExportedArtifacts()); ClassRealm containerRealm =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.6K bytes - Viewed (0)