Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for setConvention (0.23 sec)

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

        }
    
        @Override
        public Property<T> convention(@Nullable T value) {
            if (value == null) {
                setConvention(Providers.notDefined());
            } else {
                setConvention(Providers.fixedValue(getValidationDisplayName(), value, type, sanitizer));
            }
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-imperative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractConventionTaskTest.groovy

            when:
            ConventionAwareHelper conventionMapping = (ConventionAwareHelper) task.getConventionMapping();
    
            then:
            conventionMapping.getConvention().is(task.getConvention())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 22 12:57:17 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/applying-plugins-declarative/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/build.sample.conf

    executable: gradle
    args: build
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-spring-boot/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 166 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/build-server-application.sample.conf

    commands: [{
        executable: gradle
        args: build
        execution-subdirectory: server-application
        # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/spring-boot-web-application/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: test
        expected-output-file: testTask.out
    # Do not fail for deprecation warnings: Project.getConvention; Spring boot 3.0.2+ no longer uses that API
        flags: "--warning-mode=none"
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 266 bytes
    - Viewed (0)
Back to top