Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,710 for locations (0.22 sec)

  1. src/mdo/model.vm

            @Nonnull
            public Builder location(Object key, InputLocation location) {
                if (location != null) {
                    if (!(this.locations instanceof HashMap)) {
                        this.locations = this.locations != null ? new HashMap<>(this.locations) : new HashMap<>();
                    }
                    this.locations.put(key, location);
                }
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/FileWatchingFilter.java

    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * Keeps track of how locations should be watched:
     *
     * - Immutable locations are managed by Gradle, i.e. file system changes should never be external,
     *   and therefore these locations should not be watched to cut down on the number of watchers needed.
     *
     * - Locations known to be modified during a build might receive late file events that would invalidate VFS state we just
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top