Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for _assembles_ (0.36 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/JavaUtilCollectionStrategyTest.groovy

    import spock.lang.Specification
    
    class JavaUtilCollectionStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for a Set of scalar type"() {
            expect:
            def schema = store.getSchema(ModelTypes.set(ModelType.of(String)))
            schema instanceof ScalarCollectionSchema
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/UnmanagedImplStructStrategyTest.groovy

    import spock.lang.Specification
    
    class UnmanagedImplStructStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for unmanaged type"() {
            expect:
            def schema = store.getSchema(ModelType.of(SomeType))
            schema instanceof UnmanagedImplStructSchema
            !(schema instanceof ManagedImplSchema)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ManagedImplStructStrategyTest.groovy

    import spock.lang.Specification
    
    class ManagedImplStructStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for @Managed type"() {
            expect:
            def schema = store.getSchema(ModelType.of(SomeType))
            schema instanceof ManagedImplStructSchema
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/RuleSourceSchemaExtractionStrategyTest.groovy

    import spock.lang.Specification
    
    class RuleSourceSchemaExtractionStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for RuleSource type"() {
            expect:
            def schema = store.getSchema(ModelType.of(RuleSource))
            schema instanceof RuleSourceSchema
            !(schema instanceof ManagedImplSchema)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/LifecycleBasePlugin.java

        }
    
        private void addAssemble(Project project) {
            project.getTasks().register(ASSEMBLE_TASK_NAME, assembleTask -> {
                assembleTask.setDescription("Assembles the outputs of this project.");
                assembleTask.setGroup(BUILD_GROUP);
            });
        }
    
        private void addCheck(Project project) {
            project.getTasks().register(CHECK_TASK_NAME, checkTask -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoTaskExtensionSpec.groovy

        @Rule final TestNameTestDirectoryProvider temporaryFolder = new TestNameTestDirectoryProvider(getClass())
    
        def 'asJvmArg with default arguments assembles correct string'() {
            setup:
            agent.supportsJmx() >> true
            agent.supportsInclNoLocationClasses() >> true
            agent.jar >> temporaryFolder.file('fakeagent.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/task_basics.adoc

    [source,text]
    ----
    $ ./gradlew tasks
    ----
    
    [source,text]
    ----
    Application tasks
    -----------------
    run - Runs this project as a JVM application
    
    Build tasks
    -----------
    assemble - Assembles the outputs of this project.
    build - Assembles and tests this project.
    
    ...
    
    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the main source code.
    
    ...
    
    Other tasks
    -----------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelSetStrategyTest.groovy

    import spock.lang.Specification
    
    class ModelSetStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for model set"() {
            expect:
            def schema = store.getSchema(ModelTypes.modelSet(ModelType.of(String)))
            schema instanceof ModelSetSchema
            schema instanceof ManagedImplSchema
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/bundling/Jar.java

     * limitations under the License.
     */
    
    package org.gradle.api.tasks.bundling;
    
    import groovy.lang.Closure;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Assembles a JAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Jar extends org.gradle.jvm.tasks.Jar {
        @Override
        public Jar manifest(Closure<?> configureClosure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/SpecializedModelMapStrategyTest.groovy

    import spock.lang.Specification
    
    class SpecializedModelMapStrategyTest extends Specification {
        def store = new DefaultModelSchemaStore(DefaultModelSchemaExtractor.withDefaultStrategies())
    
        def "assembles schema for model map subtype"() {
            expect:
            def schema = store.getSchema(ModelType.of(SpecializedMap))
            schema instanceof SpecializedMapSchema
            schema.elementType == ModelType.of(String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top