Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,710 for locations (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/node-locations.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false -mlir-print-debuginfo -mlir-print-local-scope %s -o - | FileCheck %s
    
    # Check that we correctly import the node locations.
    
    node {
      name: "node_outside_function"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_INT32
            tensor_shape {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

            this.source = location.getSource() != null ? new InputSource(location.getSource()) : null;
            this.locations = location.getLocations().isEmpty()
                    ? null
                    : location.getLocations().entrySet().stream()
                            .collect(Collectors.toMap(
                                    e -> e.getKey(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputLocation.java

            Map<Object, InputLocation> locations;
            Map<Object, InputLocation> sourceLocations = source.locations;
            Map<Object, InputLocation> targetLocations = target.locations;
            if (sourceLocations == null) {
                locations = targetLocations;
            } else if (targetLocations == null) {
                locations = sourceLocations;
            } else {
                locations = new LinkedHashMap<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/mdo/java/InputLocation.java

            Map<Object, InputLocation> locations;
            Map<Object, InputLocation> sourceLocations = source.locations;
            Map<Object, InputLocation> targetLocations = target.locations;
            if (sourceLocations == null) {
                locations = targetLocations;
            } else if (targetLocations == null) {
                locations = sourceLocations;
            } else {
                locations = new LinkedHashMap<>();
    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. 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)
  6. 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)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocatorTest.groovy

        def "prefers location specified in user settings file over that in global settings file"() {
            writeSettingsFile(locations.userSettingsFile, repo1)
            writeSettingsFile(locations.globalSettingsFile, repo2)
    
            expect:
            locator.localMavenRepository == repo1
        }
    
        def "ignores changes to maven settings file after initial load"() {
            when:
            writeSettingsFile(locations.userSettingsFile, repo1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            DefaultModuleIdentifier.newId(group, name)
        }
    
        def "formats message to include id when no locations"() {
            def exception = new ModuleVersionNotFoundException(newId("org", "a", "1.2"), [])
    
            expect:
            exception.message == 'Could not find org:a:1.2.'
        }
    
        def "formats message to include id and locations"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ComponentNotFound.java

        private final String message;
        private final Collection<String> locations;
    
        public ComponentNotFound(String message) {
            this.message = message;
            this.locations = Collections.emptyList();
        }
    
        public ComponentNotFound(String message, Collection<String> locations) {
            this.message = message;
            this.locations = locations;
        }
    
        @Override
        public T getComponent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top