Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 909 for isattached (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

                    }
                }
            }
            """
        }
    
        def "task operations have a build operation as parent iff build listener is attached"() {
            given:
            goodCode()
    
            when: 'listening to task progress events and build operation listener is attached'
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/model/ReplacedBy.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the property has been replaced by another. Like {@link Internal}, the property is ignored during up-to-date checks.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 16:13:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/options/Option.java

    /**
     * <p>Marks a property of a {@link org.gradle.api.Task} as being configurable from the command-line.</p>
     *
     * <p>This annotation should be attached to a field or a setter method. When attached to a field, {@link #option()}
     * will use the name of the field by default. When attached to a method, {@link #option()} must be specified.</p>
     *
     * <p>An option may have one of the following types:</p>
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/tasks/IgnoreEmptyDirectories.java

    import java.lang.annotation.Documented;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to an input property to specify that directories should be ignored
     * when snapshotting inputs. Files within directories and subdirectories will be
     * snapshot, but the directories themselves will be ignored. Empty directories,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/SkipWhenEmpty.java

    import java.lang.annotation.Documented;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * <p>Attached to a task property to indicate that the task should be skipped when the value of the property is an empty
     * {@link org.gradle.api.file.FileCollection} or directory.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

    import java.io.File;
    
    /**
     * Controls the state (not loaded / loaded) of the attached {@link GradleProperties} instance
     * so that the set of Gradle properties is deterministically loaded only once per build.
     */
    @ServiceScope(Scope.Build.class)
    public interface GradlePropertiesController {
    
        /**
         * The {@link GradleProperties} instance attached to this service.
         */
        GradleProperties getGradleProperties();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

    import java.lang.annotation.Documented;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Attached to an input property to specify that line endings should be normalized
     * when snapshotting inputs. Two files with the same contents but different line endings
     * will be considered equivalent.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Calls AddVolumeNode() once with attached set to false.
    // Verifies a single volume/node entry exists.
    // Then calls AddVolumeNode() with attached set to true
    // Verifies volume is attached to the node according to asw.
    func Test_AddVolumeNode_Positive_NewVolumeNewNodeWithFalseAttached(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

      labels:
        app: reviews
        service: reviews
    spec:
      ports:
        - port: 9090
          name: http
          protocol: HTTP
      selector:
        app: reviews
    ---
    # Deployment has no service attached. It should generate a warning.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: no-services
      namespace: bookinfo
      labels:
        app: ratings
        version: v1
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyModuleResolveMetadataBuilderTest.groovy

        }
    
        def "prevents adding artifact without configurations"() {
            def unattached = ivyArtifact("foo", "jar", "ext")
            md.addConfiguration(new Configuration("runtime"))
    
            when:
            meta.addArtifact(unattached, new HashSet<String>())
            meta.build()
    
            then: thrown(IllegalArgumentException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top