Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for puts (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

        }
    
        /**
         * PUTs the source file (must exist as file) to target URI. The target MUST BE relative from the
         * {@link RemoteRepository#getUrl()} root.
         *
         * @throws RuntimeException If PUT fails for any reason.
         */
        void put(@Nonnull Path source, @Nonnull URI relativeTarget);
    
        /**
         * PUTs the source byte array to target URI. The target MUST BE relative from the
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.pom

      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>wagon-webdav</artifactId>
      <name>Maven Wagon WebDav Provider</name>
      <version>1.0-beta-2</version>
      <description>Wagon that gets and puts artifacts through webdav protocol</description>
      <contributors>
        <contributor>
          <name>Henry Isidro</name>
          <email>******@****.***</email>
        </contributor>
        <contributor>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java

    // this here, possibly indefinitely.
    //
    public interface RepositoryCache {
    
        /**
         * Puts the specified data into the cache. <strong>Warning:</strong> The cache will directly save the provided
         * reference. If the cached data is mutable, i.e. could be modified after being put into the cache, the caller is
         * responsible for creating a copy of the original data and store the copy in the cache.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.jar

    java.io.IOException; public int read(byte[], int, int) throws java.io.IOException; } META-INF/maven/org.apache.maven.wagon/wagon-webdav/pom.xml wagon-providers org.apache.maven.wagon 1.0-beta-2 4.0.0 wagon-webdav Maven Wagon WebDav Provider Wagon that gets and puts artifacts through webdav protocol Henry Isidro ******@****.*** Joakim Erdfelt ******@****.*** slide slide-webdavlib 2.1 commons-logging commons-logging 1.0.4 runtime it.could webdav 0.4 test org.mortbay.jetty jetty 4.2.12 test META-INF/maven/...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 16.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                    }
                }
    
                // Pre-store the checksums as any future puts will overwrite them
                for (String extension : checksums.keySet()) {
                    ChecksumObserver observer = checksums.get(extension);
                    sums.put(extension, observer.getActualChecksum());
                }
    
    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-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

            this.problems.addAll(result.getProblems());
    
            for (String modelId : result.getModelIds()) {
                this.modelIds.add(modelId);
                this.rawModels.put(modelId, result.getRawModel(modelId).orElseThrow());
                this.activePomProfiles.put(modelId, result.getActivePomProfiles(modelId));
            }
        }
    
        @Override
        public Model getFileModel() {
            return fileModel;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

                    Model model = findRawModel(from, gId, aId);
                    if (model != null) {
                        context.modelByGA.put(new GAKey(gId, aId), new Holder(model));
                        context.modelByPath.put(model.getPomFile(), new Holder(model));
                    }
                    return model;
                }
    
                @Override
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java

            for (int i = 0; i < projects.size(); i++) {
                MavenProject project = projects.get(i);
                String key = BuilderCommon.getKey(project);
    
                this.getProjects().put(key, project);
                this.getIndices().put(key, i);
            }
        }
    
        public Map<String, MavenProject> getProjects() {
            return projects;
        }
    
        public Map<String, Integer> getIndices() {
            return indices;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

            PathModularization info = moduleInfo.get(path);
            if (info == null) {
                info = new PathModularization(path, true);
                moduleInfo.put(path, info);
                pathTypes.put(path, info.getPathType());
            }
            return info;
        }
    
        /**
         * Returns {@link JavaPathType#MODULES} if the given JAR file or output directory is modular.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/mapping/Lifecycle.java

                phases.put(e.getKey(), e.getValue().toString());
            }
            return phases;
        }
    
        @Deprecated
        public void setPhases(Map<String, String> phases) {
            Map<String, LifecyclePhase> lphases = new LinkedHashMap<>();
            for (Map.Entry<String, String> e : phases.entrySet()) {
                lphases.put(e.getKey(), new LifecyclePhase(e.getValue()));
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
Back to top