Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for getRelocations (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

            debug_info->add_original_func_names(original_func_name.str());
          }
        }
      } else if (auto fused = mlir::dyn_cast<mlir::FusedLoc>(unwrapped_inst_loc)) {
        auto locations = fused.getLocations();
        if (locations.size() <= 1)
          return errors::InvalidArgument("expected experimental debuf info.");
        // skip the first one, which is the name of the node_def.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

                        return true;
                    }
                }
            }
            return false;
        }
    
        public ModuleVersionIdentifier getRelocation() {
            Element distrMgt = getFirstChildElement(projectElement, DISTRIBUTION_MGT);
            Element relocation = getFirstChildElement(distrMgt, RELOCATION);
            if (relocation == null) {
                return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top