Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for AbstractProperty (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

     * </p>
     *
     * @param <T> the type of the value this property provides
     * @param <S> the type of value supplier that actually provides the value for this property
     */
    public abstract class AbstractProperty<T, S extends ValueSupplier> extends AbstractMinimalProvider<T> implements PropertyInternal<T> {
        private static final DisplayName DEFAULT_DISPLAY_NAME = Describables.of("this property");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

     */
    
    package org.gradle.api.tasks.compile
    
    import org.gradle.api.InvalidUserDataException
    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.internal.provider.AbstractProperty
    import org.gradle.api.internal.tasks.compile.CommandLineJavaCompileSpec
    import org.gradle.api.internal.tasks.compile.ForkingJavaCompileSpec
    import org.gradle.internal.jvm.Jvm
    import org.gradle.jvm.toolchain.JavaCompiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

    import org.gradle.api.internal.file.FileTreeInternal
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.internal.file.collections.FileSystemMirroringFileTree
    import org.gradle.api.internal.provider.AbstractProperty
    import org.gradle.api.internal.tasks.testing.TestExecuter
    import org.gradle.api.internal.tasks.testing.TestExecutionSpec
    import org.gradle.api.internal.tasks.testing.TestFramework
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     */
    public abstract class AbstractCollectionProperty<T, C extends Collection<T>> extends AbstractProperty<C, CollectionSupplier<T, C>>
        implements CollectionPropertyInternal<T, C> {
    
        private final Class<? extends Collection> collectionType;
        private final Class<T> elementType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

     *
     * @param <K> the type of entry key
     * @param <V> the type of entry value
     */
    public class DefaultMapProperty<K, V> extends AbstractProperty<Map<K, V>, MapSupplier<K, V>> implements MapProperty<K, V>, MapProviderInternal<K, V>, MapPropertyInternal<K, V> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top