Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 896 for locations (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/location_utils.cc

            if (name_loc.getName().strref().ends_with(":")) {
              if (locations.size() == 2)
                return locations[1];
              else if (locations.size() > 2)
                return mlir::FusedLoc::get(
                    fused_loc.getContext(),
                    {locations.begin() + 1, locations.end()});
            }
          }
        }
      }
      return loc;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplierTest.groovy

            def supplier = createSupplier()
    
            when:
            def locations = supplier.get()
    
            then:
            locations*.location.path.containsAll("c:\\jdk8", "d:\\jdk9", "c:\\jdk17", "d:\\jdk11", "c:\\jdk15", "d:\\jdk16")
            locations*.source == ["Windows Registry"] * 6
        }
    
        def "handles absent adoptopenjdk keys"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/metrics/types_util.cc

                      return LocationExtractor(locations[1]).Extract(error_data);
                    } else if (num_locs > 2) {
                      locations = {locations.begin() + 1, locations.end()};
                    }
                  }
                }
              }
    
              mutable_location->set_type(ConverterErrorData::FUSEDLOC);
              llvm::interleave(
                  locations,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

        private static List<ProblemLocation> fromList(List<Object> locations) {
            List<ProblemLocation> result = []
            locations.each { location ->
                if (location['pluginId'] != null) {
                    result += new ReceivedPluginIdLocation(location as Map<String, Object>)
                } else if (location['line'] != null) {
                    result += new ReceivedLineInFileLocation(location as Map<String, Object>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultSingleProblemEvent.java

            this.contextualLabel = contextualLabel;
            this.details = details;
            this.locations = locations;
            this.solutions = solutions;
            this.additionalData = additionalData;
            this.failure = failure;
        }
    
        @Override
        public ProblemDefinition getDefinition() {
            return problemDefinition;
        }
    
        @Override
        public ContextualLabel getContextualLabel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

      StringRef op_type_with_suffix =
          mlir::cast<NameLoc>(locations.front()).getName().strref();
      if (!op_type_with_suffix.ends_with(":")) return false;
    
      return absl::c_all_of(locations, [](Location loc) {
        return isa<NameLoc>(loc) ||
               (isa<CallSiteLoc>(loc) &&
                isa<NameLoc>(mlir::cast<CallSiteLoc>(loc).getCallee()));
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemBuilder.java

            ProblemDiagnostics problemDiagnostics = problemStream.forCurrentCaller(exceptionForProblemInstantiation);
            Location loc = problemDiagnostics.getLocation();
            if (loc != null) {
                locations.add(getFileLocation(loc));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerializationTest.groovy

            deserialized[0].definition.id.name == "type"
            deserialized[0].definition.id.displayName == "label"
            deserialized[0].locations[0].path == "location"
            deserialized[0].locations[0].line == 1
            deserialized[0].locations[0].column == 2
            deserialized[0].locations[0].length == 3
            deserialized[0].definition.documentationLink == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultProblemDetails.java

            List<InternalLocation> locations,
            List<InternalSolution> solutions,
            InternalAdditionalData additionalData,
            @Nullable InternalFailure failure
        ) {
            this.definition = definition;
            this.details = details;
            this.contextualLabel = contextualLabel;
            this.locations = locations;
            this.solutions = solutions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/LinuxInstallationSupplierTest.groovy

            then:
            directories.size() == 2
            directories*.location.toSorted() == [
                candidates.file("11.0.6.hs-adpt"),
                candidates.file("14")
            ]
            directories*.source.unique() == ["Common Linux Locations"]
        }
    
        def "supplies installations for multiple locations"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top