Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for PROPERTY (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Reads the value from the project extra property we created — note the `project.` qualifier on `extra[...]`, otherwise Gradle will assume we want to read an extra property from the _task_
    
    // === `Property`, `Provider` and `NamedDomainObjectProvider`
    
    
    [[kotdsl:assignment]]
    == Kotlin lazy property assignment
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    This is because we read the system property at configuration time, hence requiring Gradle to run the configuration phase again when the value of that property changes.
    Fixing that is as simple as obtaining the provider of the system property and wiring it to the task input, without reading it at configuration time.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `testLogging` — default: _not set_::
    This property represents a set of options that control which test events are logged and at what level. You can also configure other logging behavior via this property. See link:{javadocPath}/org/gradle/api/tasks/testing/logging/TestLoggingContainer.html[TestLoggingContainer] for more detail.
    
    `dryRun` — default: false::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/misc/kotlin/project2",files="build.gradle.kts[tags=using-root-dir-property]"]
    include::sample[dir="snippets/files/misc/groovy/project2",files="build.gradle[tags=using-root-dir-property]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

        def "can add list properties to container"() {
            containerAllowsExternalProviders()
    
            given:
            def property = TestUtil.objectFactory().listProperty(type)
    
            when:
            container.addAllLater(property)
            property.add(a)
            property.addAll([b, c])
    
            then:
            toList(container) == [a, b, c]
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            isTopLevelProperty = objectExpression.getClass() != PropertyExpression.class;
            objectExpression = transform(objectExpression);
            // we handle the property part as if it were not part of the property
            inPropertyExpression = false;
            Expression property = transform(pe.getProperty());
            isTopLevelProperty = itlp;
            inPropertyExpression = ipe;
    
            boolean spreadSafe = pe.isSpreadSafe();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        @Test
        void testPluginConfigProperties() throws Exception {
            PomTestWrapper pom = buildPom("plugin-config-properties");
            assertEquals(
                    "my.property", pom.getValue("build/plugins[1]/configuration[1]/systemProperties[1]/property[1]/name"));
        }
    
        /*MNG-3900*/
        @Test
        void testProfilePropertiesInterpolation() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void setStatus(Object s) {
            getInternalStatus().set(s);
        }
    
        @Override
        public Property<Object> getInternalStatus() {
            if (status == null) {
                status = getObjects().property(Object.class).convention(DEFAULT_STATUS);
            }
            return status;
        }
    
        @Override
        public Map<String, Project> getChildProjectsUnchecked() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Attempting to modify the toolchain after it has been finalized will result in error messages similar to the following:
    ```
    The value for property 'implementation' is final and cannot be changed any further.
    The value for property 'languageVersion' is final and cannot be changed any further.
    The value for property 'vendor' is final and cannot be changed any further.
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            private ActivationFrame nextFrame(String property) {
                return new ActivationFrame(property, Optional.empty());
            }
    
            private <P> ActivationFrame nextFrame(String property, Function<P, InputLocationTracker> child) {
                @SuppressWarnings("unchecked")
                final Optional<P> parent = (Optional<P>) stk.peek().parent;
                return new ActivationFrame(property, parent.map(child));
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top