Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for getRelocations (0.24 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

            }
    
            depRequest.setRoot(node);
    
            if (logger.isWarnEnabled()) {
                for (DependencyNode child : node.getChildren()) {
                    if (!child.getRelocations().isEmpty()) {
                        org.eclipse.aether.artifact.Artifact artifact =
                                child.getDependency().getArtifact();
                        String message =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                    dependenciesValidator.validate(session, pluginArtifact, result);
                }
    
                pluginArtifact = result.getArtifact();
    
                if (logger.isWarnEnabled() && !result.getRelocations().isEmpty()) {
                    String message =
                            pluginArtifact instanceof org.apache.maven.internal.impl.resolver.RelocatedArtifact relocated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalBasicProblemDetailsVersion3.java

        List<InternalSolution> getSolutions();
    
        @Nullable
        InternalDetails getDetails();
    
        @Nullable
        InternalContextualLabel getContextualLabel();
    
        List<InternalLocation> getLocations();
    
        @Nullable
        InternalFailure getFailure();
    
        InternalAdditionalData getAdditionalData();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DynamicProblemOperationContext.java

        ) {
            super(internalDescriptor, parent);
        }
    
        @Override
        public Details getDetails() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public List<Location> getLocations() {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public List<Solution> getSolutions() {
            throw new UnsupportedOperationException();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalBasicProblemDetails.java

        InternalAdditionalData getAdditionalData();
    
        InternalLabel getLabel();
    
        @Nullable
        InternalDetails getDetails();
    
        InternalSeverity getSeverity();
    
        List<InternalLocation> getLocations();
    
        @Nullable
        InternalDocumentationLink getDocumentationLink();
    
        List<InternalSolution> getSolutions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 07:53:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         * @since 8.8
         */
        Details getDetails();
    
        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
        List<Solution> getSolutions();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemContextDetails.java

    import java.util.List;
    
    @NonNullApi
    public interface InternalProblemContextDetails {
        InternalAdditionalData getAdditionalData();
        @Nullable
        InternalDetails getDetails();
    
        List<InternalLocation> getLocations();
    
        List<InternalSolution> getSolutions();
    
        @Nullable
        InternalFailure getFailure();
    
        @Nullable
        InternalContextualLabel getContextualLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:20 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/location_utils.cc

    namespace tensorflow {
    
    mlir::Location GetLocationWithoutOpType(mlir::Location loc) {
      if (auto fused_loc = mlir::dyn_cast<mlir::FusedLoc>(loc)) {
        auto locations = fused_loc.getLocations();
        if (!locations.empty()) {
          // Skip locations for propagating op_type metadata.
          if (auto name_loc = mlir::dyn_cast<mlir::NameLoc>(locations[0])) {
            if (name_loc.getName().strref().ends_with(":")) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

    // tensorflow/compiler/mlir/tensorflow/translate/import_model.cc for more
    // details.
    bool IsImportLocPattern(FusedLoc loc) {
      ArrayRef<Location> locations = mlir::cast<FusedLoc>(loc).getLocations();
      if (locations.size() < 2 || !isa<NameLoc>(locations.front())) return false;
    
      StringRef op_type_with_suffix =
          mlir::cast<NameLoc>(locations.front()).getName().strref();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultProblemsOperationContext.java

            this.failure = failure;
        }
    
        @Nullable
        @Override
        public Details getDetails() {
            return details;
        }
    
    
        @Override
        public List<Location> getLocations() {
            return locations;
        }
    
        @Override
        public List<Solution> getSolutions() {
            return solutions;
        }
    
        public AdditionalData getAdditionalData() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top