Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 437 for locations (0.3 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceListerTest.groovy

        def location = new ExternalResourceName(new URI("https://location/"))
    
        def "delegates list to delegate and generates build operation"() {
            setup:
            def items = ["a", "b"]
            expectListBuildOperation()
    
            when:
            def result = lister.list(location)
    
            then:
            result == items
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/io/DefaultModelReader.java

                return model;
            } catch (XMLStreamException e) {
                Location location = e.getLocation();
                throw new ModelParseException(
                        e.getMessage(),
                        location != null ? location.getLineNumber() : -1,
                        location != null ? location.getColumnNumber() : -1,
                        e);
            } catch (Exception e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlReaderException.java

        private final Location location;
    
        /**
         * @param message the message for the exception
         * @param e the exception itself
         */
        public XmlReaderException(String message, Location location, Exception e) {
            super(message, e);
            this.location = location;
        }
    
        public Location getLocation() {
            return location;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemDiagnosticsFactoryTest.groovy

        def "uses caller's stack trace to calculate problem location"() {
            given:
            def location = Stub(Location)
            def stream = factory.newStream()
    
            when:
            def diagnostics = stream.forCurrentCaller()
    
            then:
            diagnostics.exception == null
            assertIsCallerStackTrace(diagnostics.stack)
            diagnostics.location == location
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemLocationAnalyzerTest.groovy

            when:
            def location = analyzer.locationForUsage(failure, false)
    
            then:
            location.sourceLongDisplayName == longDisplayName
            location.sourceShortDisplayName == shortDisplayName
            location.lineNumber == 7
            location.formatted == "<long source>: line 7"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathSource.java

    class PathSource implements ModelSource {
    
        private final Path path;
        private final String location;
    
        PathSource(Path path) {
            this(path, null);
        }
    
        PathSource(Path path, String location) {
            this.path = path;
            this.location = location != null ? location : path.toString();
        }
    
        @Override
        public Path getPath() {
            return path;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                lock.unlock();
            }
        }
    
        @Nullable
        private Location locationFromStackRange(int startPos, int endPos, List<StackTraceElement> stack) {
            for (int i = startPos; i < endPos; i++) {
                Location location = tryGetLocation(stack.get(i));
                if (location != null) {
                    return location;
                }
            }
            return null;
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/DefaultProblemDiagnosticsFactory.java

            private final List<StackTraceElement> stackTrace;
            private final Location location;
            private final UserCodeSource source;
    
            public DefaultProblemDiagnostics(
                @Nullable Failure stackTracingFailure,
                @Nullable Throwable exception,
                List<StackTraceElement> stackTrace,
                @Nullable Location location,
                @Nullable UserCodeSource source
            ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. README.md

    See the [`NOTICE`](./NOTICE) file for required notices and attributions.
    
    Donations
    ---------
    Do you like Apache Maven? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development.
    
    Quick Build
    -------
    If you want to bootstrap Maven, you'll need:
    - Java 17+
    - Maven 3.6.3 or later
    - Run Maven, specifying a location into which the completed Maven distro should be installed:
        ```
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

     * or tasks. This property object keeps track of both the location and the task or tasks that produce the content of the element.
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.</p>
     *
     * @param <T> The type of location.
     * @since 5.6
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top