Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 898 for locations (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchain.java

        //     * Returns a {@link java.io.File}s which represent the locations of the source of the JDK,
        //     * or an empty collection when the location is not set or is invalid.
        //     *
        //     * @return List
        //     */
        //    List getSourceDirectories();
        //
        //    /**
        //     * Returns a {@link java.io.File}s which represent the locations of the Javadoc for this platform,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/SingleProblemEvent.java

         *
         * @return the problem details
         * @since 8.8
         */
        Details getDetails();
    
        /**
         * Returns the locations associated with this problem.
         *
         * @return the locations
         * @since 8.8
         */
        List<Location> getLocations();
    
        /**
         * Returns the list of solutions.
         *
         * @return the solutions
         * @since 8.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemProgressEventCrossVersionTest.groovy

            ''                         | null            | ''                                          | null
        }
    
        def "Problems expose file locations with file path only"() {
            given:
            withReportProblemTask """
                getProblems().forNamespace("org.example.plugin").reporting {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            result.output =~ /Received \d+ file system events since last build while watching \d+ locations/
            result.output =~ /Virtual file system retained information about \d+ files, \d+ directories and \d+ missing files since last build/
            result.output =~ /Received \d+ file system events during the current build while watching \d+ locations/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherProbeRegistry.java

     *
     * The {@link #unprovenHierarchies()} stream returns any hierarchies that were armed, but never received
     * a file system event.
     * These locations cannot be trusted to receive file system events in a timely manner.
     *
     * Note: a probe needs to be armed only once, if it receives an event, we will trust that location until
     * the registry is closed.
     */
    public interface FileWatcherProbeRegistry {
        void registerProbe(File hierarchy);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/RepositoryOrderingIntegrationSpec.groovy

            failure.assertHasCause("Could not resolve all artifacts for configuration ':classpath'.")
            failure.assertHasCause """
                Could not find my:plugin:1.0.
                Searched in the following locations:
                  - $buildscriptRepoUri/my/plugin/1.0/plugin-1.0.pom
                  - $pluginPortalUri/my/plugin/1.0/plugin-1.0.pom
            """.stripIndent().trim()
    
            when:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 11:30:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

                def numberMatcher = duringBuildStatusLine =~ /Received (\d+) file system events during the current build while watching \d+ locations/
                return numberMatcher[0][1] as int
            }
    
            int getRetainedFilesInCurrentBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/BuildInputHierarchy.java

        /**
         * Records that some locations are an input to the build.
         */
        public synchronized void recordInputs(Iterable<String> inputLocations) {
            for (String location : inputLocations) {
                VfsRelativePath relativePath = VfsRelativePath.of(location);
                root = root.recordValue(relativePath, ALL_CHILDREN_ARE_INPUTS);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-monolithic/prebuilt.gradle

                prebuilt$it {
                    headers.with {
                        srcDir "prebuilt/lib$it/include"
                        include "**/*.h"
                    }
                    // TODO: Define library locations (and generate something?)
                }
                <% } %>
    
                commonHeaders {
                    headers.with {
                        <% if (overlapWithOutput) { %>
                            srcDir "\$rootDir"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 735 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

        List<String> getAttempted();
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(String locationDescription);
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(ExternalResourceName location);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top