Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 44 for getRelocations (0.35 sec)

  1. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProblemDetails.java

            return details;
        }
    
        @Nullable
        @Override
        public InternalContextualLabel getContextualLabel() {
            return contextualLabel;
        }
    
        @Override
        public List<InternalLocation> getLocations() {
            return locations;
        }
    
        @Override
        public InternalProblemDefinition getDefinition() {
            return definition;
        }
    
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/DistributionManagementArtifactRelocationSource.java

            DistributionManagement distMgmt = model.getDistributionManagement();
            if (distMgmt != null) {
                Relocation relocation = distMgmt.getRelocation();
                if (relocation != null) {
                    Artifact result = new RelocatedArtifact(
                            artifactDescriptorResult.getRequest().getArtifact(),
                            relocation.getGroupId(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            DistributionManagement target = new DistributionManagement();
            target.setDownloadUrl(source.getDownloadUrl().getOrNull());
            if (source.getRelocation() != null) {
                target.setRelocation(convertRelocation(source.getRelocation()));
            }
            return target;
        }
    
        private static Relocation convertRelocation(MavenPomRelocation source) {
            Relocation target = new Relocation();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultSingleProblemEvent.java

            return contextualLabel;
        }
    
        @Override
        public Details getDetails() {
            return details;
        }
    
        @Override
        public List<Location> getLocations() {
            return locations;
        }
    
        @Override
        public List<Solution> getSolutions() {
            return solutions;
        }
    
        @Nullable
        @Override
        public FailureContainer getFailure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/metrics/types_util.cc

              LocationExtractor(loc.getCallee()).Extract(error_data);
              LocationExtractor(loc.getCaller()).Extract(error_data);
            })
            .Case<FusedLoc>([&](FusedLoc loc) {
              auto locations = loc.getLocations();
              size_t num_locs = locations.size();
              // Skip the first location if it stores information for propagating
              // op_type metadata.
              if (num_locs > 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            if (model.getDistributionManagement() != null
                    && model.getDistributionManagement().getRelocation() != null) {
                // keep relocation only
                builder.distributionManagement(DistributionManagement.newBuilder()
                        .relocation(model.getDistributionManagement().getRelocation())
                        .build());
            }
            // only keep repositories other than 'central'
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParser.java

            MutableMavenModuleResolveMetadata metadata = metadataFactory.create(cid, dependencies);
            metadata.setStatus(mdBuilder.getStatus());
            if (pomReader.getRelocation() != null) {
                metadata.setPackaging("pom");
                metadata.setRelocated(true);
            } else {
                metadata.setPackaging(pomReader.getPackaging());
                metadata.setRelocated(false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

          return quant_unit;
        }
      } else if (isa<FusedLoc>(loc)) {
        // If the op is rewritten, FusedLoc can be created.
        for (Location child_loc : mlir::cast<FusedLoc>(loc).getLocations()) {
          std::optional<QuantizationUnitLoc::QuantizationUnit> found_unit =
              FindQuantizationUnitFromLoc(child_loc);
          if (found_unit.has_value()) return found_unit;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

                }
            }
            result
        }
    
        long getOperationId() {
            operationId
        }
    
        <T> T oneLocation(Class<T> type) {
            def locations = getLocations()
            assert locations.size() == 1
            assert type.isInstance(locations[0])
            locations[0] as T
        }
    
        @Override
        ReceivedProblemDefinition getDefinition() {
            definition
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                        return null;
                    }
                    result.addException(e);
                    throw new ArtifactDescriptorException(result);
                }
    
                Artifact relocatedArtifact = getRelocation(session, result, model);
                if (relocatedArtifact != null) {
                    if (withinSameGav(relocatedArtifact, a)) {
                        result.setArtifact(relocatedArtifact);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top