Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for getRelocations (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top