Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 768 for repository (0.2 sec)

  1. apache-maven/src/assembly/maven/conf/settings.xml

       |-->
      <mirrors>
        <!-- mirror
         | Specifies a repository mirror site to use instead of a given repository. The repository that
         | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
         | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
         |
        <mirror>
          <id>mirrorId</id>
          <mirrorOf>repositoryId</mirrorOf>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

    import org.eclipse.aether.repository.LocalArtifactResult;
    import org.eclipse.aether.repository.LocalMetadataRegistration;
    import org.eclipse.aether.repository.LocalMetadataRequest;
    import org.eclipse.aether.repository.LocalMetadataResult;
    import org.eclipse.aether.repository.LocalRepository;
    import org.eclipse.aether.repository.LocalRepositoryManager;
    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(Class) throws component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(Class, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public abstract component.repository.ComponentDescriptor getComponentDescript(String);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32.4K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

            for (ArtifactRepository repository : remoteRepositories) {
                ArtifactRepositoryPolicy policy = metadata.getPolicy(repository);
    
                if (policy.isEnabled() && loadMetadata(metadata, repository, localRepository, previousMetadata)) {
                    metadata.setRepository(repository);
                    selected = repository;
                }
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        authenticationInfo(repository),
                        proxyInfo(repository));
    
            } else if (repository.getAuthentication() != null) {
                wagon.connect(new Repository(repository.getId(), repository.getUrl()), authenticationInfo(repository));
    
            } else if (repository.getProxy() != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public Object lookup(String, String) throws component.repository.exception.ComponentLookupExcep; public Object lookup(Class, String) throws component.repository.exception.ComponentLookupExcep; public Object lookup(String, String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public java.util.Map lookupMap(String) throws component.repository.exception.ComponentLookupExcep; public...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public Object lookup(String, String) throws component.repository.exception.ComponentLookupExcep; public Object lookup(Class, String) throws component.repository.exception.ComponentLookupExcep; public Object lookup(String, String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public java.util.Map lookupMap(String) throws component.repository.exception.ComponentLookupExcep; public...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    classworlds.realm.ClassRealm); public abstract void addComponentDescript(component.repository.ComponentDescriptor) throws component.repository.exception.ComponentRepositoryE; public abstract void release(Object) throws component.repository.exception.ComponentLifecycleEx; public abstract void releaseAll(java.util.Map) throws component.repository.exception.ComponentLifecycleEx; public abstract void releaseAll(java.util.List) throws component.repository.exception.ComponentLifecycleEx; public abstract boolean hasComponent(String);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java

        @Nonnull
        static ArtifactDeployerRequest build(
                @Nonnull Session session, @Nonnull RemoteRepository repository, @Nonnull Collection<Artifact> artifacts) {
            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .repository(nonNull(repository, "repository cannot be null"))
                    .artifacts(nonNull(artifacts, "artifacts cannot be null"))
                    .build();
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLocalRepository.java

        private final @Nonnull org.eclipse.aether.repository.LocalRepository repository;
    
        @Inject
        public DefaultLocalRepository(@Nonnull org.eclipse.aether.repository.LocalRepository repository) {
            this.repository = nonNull(repository, "repository");
        }
    
        @Nonnull
        public org.eclipse.aether.repository.LocalRepository getRepository() {
            return repository;
        }
    
        @Nonnull
        @Override
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Dec 07 20:05:02 GMT 2023
    - 1.8K bytes
    - Viewed (0)
Back to top