Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 612 for PROPERTY (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/cache/DefaultCacheConfigurations.java

            }
    
            @Override
            public Property<Long> getRemoveUnusedEntriesOlderThan() {
                return removeUnusedEntriesOlderThan;
            }
    
            /**
             * @implNote Returns a supplier mapped from the property.  This provides a supplier that is resilient
             * to subsequent changes to the property value as opposed to just calling get() on the property.
             */
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

                    }
    
                    @Restricted
                    public abstract Property<String> getName();
    
                    @Restricted
                    public abstract Property<Boolean> getRead();
    
                    @Restricted
                    public abstract Property<Boolean> getWrite();
                }
    
                public static class Point {
                    public final int xCoord;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

        }
    
        def "dependency declared using property whose value is a task output provider implies dependency on task"() {
            taskTypeWithOutputFileProperty()
            buildFile << """
                def task = tasks.create("a", FileProducer) {
                    output = file("a.txt")
                }
                def property = objects.fileProperty()
                property.set(task.output)
                tasks.register("b") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            outputContains "$description property 'greeting' has changed"
    
            where:
            kind     | option | description | reportedInput
            'system' | 'D'    | 'system'    | "system property 'greeting'"
    //        'gradle' | 'P'    | 'Gradle'    | "Gradle property 'greeting'"
        }
    
        def "mapped system property used as task input"() {
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    If multiple interfaces declare the same property but with different option flags, they will both work to set the property.
    
    In the example below, the custom task `UrlVerify` verifies whether a URL can be resolved by making an HTTP call and checking the response code. The URL to be verified is configurable through the property `url`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * @return the provider for the Gradle property, never returns null
         * @since 6.2
         */
        Provider<String> gradleProperty(String propertyName);
    
        /**
         * Creates a {@link Provider} whose value is fetched from the Gradle property of the given name.
         *
         * @param propertyName the name of the Gradle property
         * @return the provider for the Gradle property, never returns null
         * @since 6.2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

            failureDescriptionContains("Type 'TaskWithInput' property 'direct' has $annotation annotation used on property of type 'ResolvedArtifactResult'.")
            failureDescriptionContains("Type 'TaskWithInput' property 'providerInput' has $annotation annotation used on property of type 'Provider<ResolvedArtifactResult>'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            def changes = [
                inputProperty: { String property ->
                    inputProperties[property] = inputProperties[property] + ' changed'
                },
                inputFile: { String property ->
                    inputFiles[property] << ' changed'
                },
                outputFile: { String property ->
                    outputFiles[property] << ' changed'
                }
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            config.description("doesn't have a configured value")
                .reason("this property isn't marked as optional and no value has been configured")
                .solution("Assign a value to '${config.property}'")
                .solution("Mark property '${config.property}' as optional")
                .render()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  10. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

        }
    
        @Issue("gradle/gradle#10363")
        def "supports signing subkeys"() {
            given:
            buildFile << """
                signing {
                    useInMemoryPgpKeys(project.property('keyId'), project.property('secretKey'), project.property('password'))
                    sign(jar)
                }
            """
    
            when:
            executer.withEnvironmentVars([
                ORG_GRADLE_PROJECT_keyId: keyId,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top