Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 115 for setItems (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectories.java

    /**
     * <p>Marks a property as specifying one or more output directories for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task to be considered out-of-date when the directory paths or task
     * output to those directories have been modified since the task was last run.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 29 11:24:35 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/LocalState.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying local state for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>Local state is removed when the task is loaded from cache.</p>
     *
     * @since 4.3
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ManagedModelInitializerTest.groovy

                import org.gradle.model.Managed
    
                @Managed
                interface CollectionType {
                    ${collectionType.name}<String> getItems()
                }
            """
    
            then:
            failWhenRealized(managedType, canNotBeConstructed("CollectionType"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/ListModelProjectionTest.groovy

    import org.gradle.model.Managed
    
    class ListModelProjectionTest extends AbstractCollectionModelProjectionTest<String, List<String>> {
    
        @Managed
        static interface Internal {
            List<String> getItems()
        }
    
        @Override
        Class<?> holderType() {
            Internal
        }
    
        def "can remove using index"() {
            when:
            mutate {
                add 'foo'
                add 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectory.java

    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying an output directory for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>The directory will be created before the task is executed if it does not exist already.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitive.java

     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>If a {@link org.gradle.api.Task} declares a file property without this annotation, the default is {@link PathSensitivity#ABSOLUTE}.</p>
     *
     * @since 3.1
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 07:58:50 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

                    // Add the items in this page of results to the list we'll return.
                    // GCS API will return null on an empty list.
                    if(objects.getItems() != null) {
                        results.addAll(objects.getItems());
                    }
    
                    // Get the next page, in the next iteration of this loop.
                    listRequest.setPageToken(objects.getNextPageToken());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/tasks/CompileClasspath.java

     *     <li>Changes to directories, including directory entries in Jars.</li>
     * </ul>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p><strong>Note:</strong> to stay compatible with versions prior to Gradle 3.4, classpath
     * properties need to be annotated with {@literal @}{@link InputFiles} as well.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 10:29:21 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputFile.java

    import java.lang.annotation.*;
    
    /**
     * <p>Marks a property as specifying an output file for a task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>The parent directory will be created before the task is executed if it does not exist
     * already.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 12:53:53 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/Console.java

     * because its value only influences the console output of the task.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
     * Annotations on setters or just the field in Java are ignored.</p>
     *
     * <p>This will cause the task not to be considered out-of-date when the property has changed.</p>
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top