Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for getRelocations (0.33 sec)

  1. src/mdo/java/InputLocation.java

            return source;
        }
    
        public InputLocation getLocation(Object key) {
            return locations != null ? locations.get(key) : null;
        }
    
        public Map<Object, InputLocation> getLocations() {
            return locations;
        }
    
        /**
         * Merges the {@code source} location into the {@code target} location.
         *
         * @param target the target location
         * @param source the source location
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/problems-api-usage/sample-ide/src/main/java/org/gradle/sample/SampleIde.java

                System.out.println(" - details: " + problem.getDetails().getDetails());
                System.out.println(" - severity: " + toString(problem.getSeverity()));
                for (Location location : problem.getLocations()) {
                    if (location instanceof PluginIdLocation) {
                        System.out.println(" - plugin ID: " + ((PluginIdLocation) location).getPluginId());
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/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 Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumer.java

                    return new DefaultInternalProblemContextDetails(
                        basicDetails.getAdditionalData(),
                        basicDetails.getDetails(),
                        basicDetails.getLocations(),
                        basicDetails.getSolutions(),
                        basicDetails.getFailure(),
                        basicDetails.getContextualLabel()
                    );
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

            return source;
        }
    
        public InputLocation getLocation(Object key) {
            return locations != null ? locations.get(key) : null;
        }
    
        public Map<Object, InputLocation> getLocations() {
            return locations;
        }
    
        /**
         * Merges the {@code source} location into the {@code target} location.
         *
         * @param target the target location
         * @param source the source location
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            this.solutions = new ArrayList<String>(problem.getSolutions());
            this.severity = problem.getDefinition().getSeverity();
    
            locations.addAll(problem.getLocations());
    
            this.details = problem.getDetails();
            this.docLink = problem.getDefinition().getDocumentationLink();
            this.exception = problem.getException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProblemsProgressEventConsumer.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

        if (auto name = loc.dyn_cast<NameLoc>()) {
          return name.getName().strref();
        } else if (auto fused_name = loc.dyn_cast<FusedLoc>()) {
          for (auto sub_loc : fused_name.getLocations()) {
            if (auto named_sub_loc = sub_loc.dyn_cast<NameLoc>()) {
              return named_sub_loc.getName().strref();
            }
          }
        }
        return llvm::StringRef("");
      };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

            if (location != null) {
                org.apache.maven.api.settings.InputSource source = location.getSource();
                Map<Object, InputLocation> locs = location.getLocations().entrySet().stream()
                        .collect(Collectors.toMap(Map.Entry::getKey, e -> toLocation(e.getValue())));
                return new org.apache.maven.api.model.InputLocation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                    toContextualLabel(basicProblemDetails.getLabel().getLabel()),
                    toProblemDetails(basicProblemDetails.getDetails()),
                    toLocations(basicProblemDetails.getLocations()),
                    toSolutions(basicProblemDetails.getSolutions()),
                    toAdditionalData(basicProblemDetails.getAdditionalData()),
                    toFailureContainer(basicProblemDetails)
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top