Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,125 for a$project (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/project/NewDefaultProjectTest.groovy

        }
    
        def "provides task by name recursively"() {
            def a = createChildProject(project, "a")
    
            [project, a].each { it.task "foo"; it.task "bar" }
    
            when:
            def rootTasks = project.getTasksByName("foo", true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/projectProperties/kotlin/build.gradle.kts

    // Querying the presence of a project property
    if (hasProperty("myProjectProp")) {
        // Accessing the value, throws if not present
        println(property("myProjectProp"))
    }
    
    // Accessing the value of a project property, null if absent
    println(findProperty("myProjectProp"))
    
    // Accessing the Map<String, Any?> of project properties
    println(properties["myProjectProp"])
    
    // Using Kotlin delegated properties on `project`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 918 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/projectProperties/groovy/build.gradle

    // tag::configuration[]
    // Querying the presence of a project property
    if (hasProperty('myProjectProp')) {
        // Accessing the value, throws if not present
        println property('myProjectProp')
    }
    
    // Accessing the value of a project property, null if absent
    println findProperty('myProjectProp')
    
    // Accessing the Map<String, ?> of project properties
    println properties['myProjectProp']
    
    // Using Groovy dynamic names, throws if not present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 867 bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         * add to the build.</p>
         *
         * <p>The supplied name is converted to a project directory relative to the parent directory of the root
         * project directory.</p>
         *
         * <p>As an example, the name {@code a} add a project with path {@code :a}, name {@code a} and project directory
         * {@code $rootDir/../a}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/initialization/resolve/RulesMode.java

        /**
         * If this mode is set, any component metadata rule declared on a project
         * will cause the project to use the rules declared by the project, ignoring
         * those declared in settings.
         *
         * This is the default behavior.
         */
        PREFER_PROJECT,
    
        /**
         * If this mode is set, any component metadata rule declared directly in a
         * project, either directly or via a plugin, will be ignored.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 13:00:18 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    Both of the following will set the `foo` property on your Project object to `"bar"`.
    
    *Example 2:* Setting a project property via a *system property*:
    ====
    ----
    org.gradle.project.foo=bar
    ----
    ====
    
    *Example 3:* Setting a project property via an *environment variable*:
    ====
    ----
    ORG_GRADLE_PROJECT_foo=bar
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     *
     * </ul>
     *
     * <h3>Tasks</h3>
     *
     * <p>A project is essentially a collection of {@link Task} objects. Each task performs some basic piece of work, such
     * as compiling classes, or running unit tests, or zipping up a WAR file. You add tasks to a project using one of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         * Builds a project descriptor for the specified artifact.
         *
         * @param projectArtifact The POM artifact to build the project from, must not be {@code null}.
         * @param request The project building request that holds further parameters, must not be {@code null}.
         * @return The result of the project building, never {@code null}.
         * @throws ProjectBuildingException If the project descriptor could not be successfully built.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ReportRenderer.java

        /**
         * Starts visiting a project.
         *
         * @param project The project, never null.
         */
        void startProject(ProjectDetails project);
    
        /**
         * Completes visiting a project.
         *
         * @param project The project, never null.
         */
        void completeProject(ProjectDetails project);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 2K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTask.java

    /**
     * A task which reports the outgoing variants of a project on the command line.
     *
     * This is useful for listing what a project produces in terms of variants and
     * what artifacts are attached to each variant.
     *
     * Variants, in this context, must be understood as "things produced by a project
     * which can safely be consumed by another project".
     *
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 20:17:34 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top