Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for PROPERTY (0.38 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     ** `PropertyState`
     ** `DirectoryVar`
     ** `RegularFileVar`
     ** `ProjectLayout.newDirectoryVar()`
     ** `ProjectLayout.newFileVar()`
     ** `Project.property(Class)`
     ** `Script.property(Class)`
     ** `ProviderFactory.property(Class)`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    ====
    
    Annotations are inherited from all parent types including implemented interfaces. Property type annotations override any other property type annotation declared in a parent type. This way an `@InputFile` property can be turned into an `@InputDirectory` property in a child task type.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    )
    
    // DEVPROPGUID specifies a property category.
    type DEVPROPGUID GUID
    
    // DEVPROPID uniquely identifies the property within the property category.
    type DEVPROPID uint32
    
    const DEVPROPID_FIRST_USABLE DEVPROPID = 2
    
    // DEVPROPKEY represents a device property key for a device property in the
    // unified device property model.
    type DEVPROPKEY struct {
    	FmtID DEVPROPGUID
    	PID   DEVPROPID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== AbstractExecTask API Cleanup
    
    The deprecated `execResult` getter property of the `AbstractExecTask` task type has been removed.
    Use the `executionResult` getter property instead.
    
    ==== AbstractTestTask API Cleanup
    
    The deprecated `binResultsDir` property of the `AbstractTestTask` task type has been removed.
    Use the `binaryResultsDirectory` property instead.
    
    ==== SourceDirectorySet API Cleanup
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            private final Property<String> prop;
            private final Property<String> prop2;
            private final Property<String> aProp;
    
            public BeanWithProperty(ObjectFactory factory) {
                this.prop = factory.property(String.class);
                this.prop2 = factory.property(String.class);
                this.aProp = factory.property(String.class);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            output.contains("Appending output property name to build cache key: outputDirectory")
            output.contains("Appending output property name to build cache key: resultsFile")
            output.contains("Build cache key for MakeGreen")
        }
    
        def "honors @PathSensitive(NONE) on input artifact property for project artifact file when caching"() {
            createDirs("a", "b", "c")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top