Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for toRepos (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

        }
    
        public static List<RemoteRepository> toRepos(List<ArtifactRepository> repos) {
            return Optional.ofNullable(repos).orElse(Collections.emptyList()).stream()
                    .map(RepositoryUtils::toRepo)
                    .collect(Collectors.toList());
        }
    
        public static RemoteRepository toRepo(ArtifactRepository repo) {
            RemoteRepository result = null;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 04 18:33:16 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                InternalSession iSession = new SimpleSession(mSession, repoSystem, null);
                InternalSession.associate(repoSession, iSession);
    
                List<RemoteRepository> repositories = RepositoryUtils.toRepos(request.getPluginArtifactRepositories());
                UnaryOperator<String> interpolator = createInterpolator(request);
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 16 13:41:14 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/BootstrapCoreExtensionManager.java

                InternalSession iSession = new SimpleSession(mSession, repoSystem, null);
                InternalSession.associate(repoSession, iSession);
    
                List<RemoteRepository> repositories = RepositoryUtils.toRepos(request.getPluginArtifactRepositories());
                UnaryOperator<String> interpolator = createInterpolator(request);
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 16 13:41:14 GMT 2025
    - 13.9K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public void setRemoteArtifactRepositories(List<ArtifactRepository> remoteArtifactRepositories) {
            this.remoteArtifactRepositories = remoteArtifactRepositories;
            this.remoteProjectRepositories = RepositoryUtils.toRepos(getRemoteArtifactRepositories());
        }
    
        @Deprecated
        public List<ArtifactRepository> getRemoteArtifactRepositories() {
            if (remoteArtifactRepositories == null) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Aug 29 12:47:20 GMT 2025
    - 67K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/query-params-str-validations.md

    # Parámetros de Query y Validaciones de String { #query-parameters-and-string-validations }
    
    **FastAPI** te permite declarar información adicional y validación para tus parámetros.
    
    Tomemos esta aplicación como ejemplo:
    
    {* ../../docs_src/query_params_str_validations/tutorial001_py310.py hl[7] *}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 18.4K bytes
    - Click Count (0)
Back to Top