Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 899 for locations (0.17 sec)

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

    TEST(ErrorUtilTest, StatusScopedDiagnosticHandlerWithFilter) {
      // Filtering logic is based on tensorflow::IsInternalFrameForFilename()
      // Note we are surfacing the locations that are NOT internal frames
      // so locations that fail IsInternalFrameForFilename() evaluation pass the
      // filter.
    
      // These locations will fail the IsInternalFrameForFilename() check so will
      // pass the filter.
      MLIRContext context;
      auto id =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/internal/DefaultProblemsOperationContext.java

        public DefaultProblemsOperationContext(
            @Nullable Details details,
            List<Location> locations,
            List<Solution> solutions,
            AdditionalData additionalData,
            @Nullable FailureContainer failure
        ) {
            this.details = details;
            this.locations = locations;
            this.solutions = solutions;
            this.additionalData = additionalData;
            this.failure = failure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 12:26:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/FileSystemAccess.java

        /**
         * Invalidate the given locations as they are about to be updated.
         */
        void invalidate(Iterable<String> locations);
    
        /**
         * Runs an action which potentially writes to the given locations.
         */
        void write(Iterable<String> locations, IoRunnable action) throws IOException;
    
        /**
         * Updates the cached state at the location with the snapshot.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:29:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ModuleVersionNotFoundException.java

            builder.endChildren();
        }
    
        private static void addLocations(TreeFormatter builder, Collection<String> locations) {
            if (locations.isEmpty()) {
                return;
            }
            builder.node("Searched in the following locations");
            builder.startChildren();
    
            locations.forEach(builder::node);
    
            builder.endChildren();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/metrics/error_collector_inst_test.cc

          1);
    
      // Check the location information.
      std::vector<std::string> locations;
      for (const auto& error : collected_errors) {
        EXPECT_TRUE(error.has_location());
        locations.push_back(error.location().DebugString());
      }
    
      EXPECT_THAT(locations, Each(testing::HasSubstr("CALLSITELOC")));
      EXPECT_THAT(locations, Each(testing::HasSubstr(input_file)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ArtifactNotFoundExceptionTest.groovy

    class ArtifactNotFoundExceptionTest extends Specification {
        def "formats message and locations"() {
            def artifactId = Stub(ComponentArtifactIdentifier) {
                getDisplayName() >> "<artifact>"
            }
            def locations = ["http://somewhere", "sftp://elsewhere"]
            def exception = new ArtifactNotFoundException(artifactId, locations)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ArtifactNotFoundException.java

            StringBuilder builder = new StringBuilder();
            builder.append(String.format("Could not find %s.", artifact.getDisplayName()));
            if (!locations.isEmpty()) {
                builder.append(String.format("%nSearched in the following locations:"));
                for (String location : locations) {
                    builder.append(String.format("%n    %s", location));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:55 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/VersionHierarchyRootTest.groovy

        }
    
        private long getVersion(String location) {
            return versionHierarchyRoot.getVersion(location)
        }
    
        List<String> locationWithAncestors(String location) {
            (location.split('/') as List)
                .findAll {!it.empty }
                .inits().collect { "/${it.join('/')}".toString() }
        }
    
        private void updateVersions(String... locations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. 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)
Back to top