Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,710 for locations (0.27 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/domain-model/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

    }
    // end::apply-plugin[]
    
    // tag::configure-locations[]
    model {
        visualStudio {
            projects.all {
                projectFile.location = "vs/${name}.vcxproj"
                filtersFile.location = "vs/${name}.vcxproj.filters"
            }
            solution {
                solutionFile.location = "vs/${name}.sln"
            }
        }
    }
    // end::configure-locations[]
    
    // tag::customize-project-files[]
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            final File home = location.getLocation();
            final File parentPath = home.getParentFile();
            final boolean isEmbeddedJre = home.getName().equalsIgnoreCase("jre");
            if (isEmbeddedJre && hasJavaExecutable(parentPath)) {
                return location.withLocation(parentPath);
            }
            return location;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemContext.java

         *
         * @return the problem details
         * @since 8.8
         */
        @Nullable
        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: Mon Mar 18 12:26:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FlatDirJvmLibraryArtifactResolutionIntegrationTest.groovy

            def location1 = file("repo/some-artifact-1.0.jar").displayUri
            def location2 = file("repo/some-artifact.jar").displayUri
    
            fixture.expectComponentNotFound().prepare()
    
            expect:
            fails("verify")
            failure.assertHasCause("""Could not find some.group:some-artifact:1.0.
    Searched in the following locations:
      - ${location1}
      - ${location2}""")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/server-application/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal()
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    includeBuild('../user-feature')
    includeBuild('../admin-feature')
    
    // == Define the inner structure of this component ==
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 503 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    
            when:
            module.pom.expectGetMissing()
    
            then:
            fails("showMissing")
            failure.assertResolutionFailure(':missing')
                .assertHasCause("""Could not find group:projectA:1.2.
    Searched in the following locations:
      - ${module.pom.uri}
    Required by:
        project :""")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top