Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for GetRequest (0.29 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

            if (relocations != null) {
                Artifact original = artifactDescriptorResult.getRequest().getArtifact();
                Relocation relocation = relocations.getRelocation(original);
                if (relocation != null
                        && (isProjectContext(artifactDescriptorResult.getRequest().getRequestContext())
                                || relocation.global)) {
                    if (relocation.target == SENTINEL) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

            LOGGER.debug("Attempting to get gcs resource: [{}]", uri.toString());
    
            String path = cleanResourcePath(uri);
            try {
                Storage.Objects.Get getRequest = storage.objects().get(uri.getHost(), path);
                return getRequest.execute();
            } catch (GoogleJsonResponseException e) {
                // When an artifact is being published it is first checked whether it is available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java

            if (relocations != null) {
                Artifact original = artifactDescriptorResult.getRequest().getArtifact();
                Relocation relocation = relocations.getRelocation(original);
                if (relocation != null
                        && (isProjectContext(artifactDescriptorResult.getRequest().getRequestContext())
                                || relocation.global)) {
                    if (relocation.target == SENTINEL) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionRangeResolver.java

                }
            }
    
            for (MetadataResult metadataResult : metadataResults) {
                result.addException(metadataResult.getException());
    
                ArtifactRepository repository = metadataResult.getRequest().getRepository();
                if (repository == null) {
                    repository = session.getLocalRepository();
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/impl/DefaultSessionTest.java

            DefaultMavenExecutionRequest mer = new DefaultMavenExecutionRequest();
            MavenSession ms = new MavenSession(null, rss, mer, null);
            ms.getRequest().setRootDirectory(Paths.get("myRootDirectory"));
            DefaultSession session =
                    new DefaultSession(ms, mock(RepositorySystem.class), Collections.emptyList(), null, null, null);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jan 25 13:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/cache/ResolutionControl.java

     */
    public interface ResolutionControl<A, B> {
        /**
         * Returns the query object that was requested in this resolution.
         * @return the request object
         */
        A getRequest();
    
        /**
         * Returns the cached result file or null if the result has not been cached.
         * @return the cached result
         */
        @Nullable
        B getCachedResult();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

            for (MetadataResult res : results) {
                org.eclipse.aether.metadata.Metadata metadata = res.getMetadata();
    
                if (metadata != null) {
                    ArtifactRepository repository = res.getRequest().getRepository();
                    if (repository == null) {
                        repository = request.getRepositorySession().getLocalRepository();
                    }
    
                    PluginPrefixResult result =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.java

            } else {
                List<ToolchainModel> availableToolchains =
                        org.apache.maven.toolchain.model.ToolchainModel.toolchainModelToApiV4(
                                session.getRequest().getToolchains().get(type));
    
                if (availableToolchains != null) {
                    for (ToolchainModel toolchainModel : availableToolchains) {
                        org.apache.maven.toolchain.model.ToolchainModel tm =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        public Properties getUserProperties() {
            return userProperties;
        }
    
        public Properties getSystemProperties() {
            return systemProperties;
        }
    
        public MavenExecutionRequest getRequest() {
            return request;
        }
    
        public void setUserProperties(Properties properties) {
            this.userProperties.putAll(properties);
        }
    
        public Path getRootDirectory() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 10:32:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java

                 * based on the configured remote repos.
                 */
                MavenSession session = legacySupport.getSession();
                if (session != null) {
                    MavenExecutionRequest req = session.getRequest();
                    if (req != null) {
                        request.setActiveProfileIds(req.getActiveProfiles());
                        request.setInactiveProfileIds(req.getInactiveProfiles());
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top