Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for getRelocations (0.22 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. 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)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenPomDistributionManagementInternal.java

    import javax.annotation.Nullable;
    
    public interface MavenPomDistributionManagementInternal extends MavenPomDistributionManagement {
    
        @Nullable
        MavenPomRelocation getRelocation();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 992 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/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomDistributionManagement.java

                relocation = objectFactory.newInstance(DefaultMavenPomRelocation.class, objectFactory);
            }
            action.execute(relocation);
        }
    
        @Override
        public MavenPomRelocation getRelocation() {
            return relocation;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/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: Mon Dec 18 12:26:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top