Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 215 for Sall (0.07 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            then:
            outputEventListener.events.empty
    
            where:
            type << WarningMode.values().findAll { !it.shouldDisplayMessages() }
        }
    
        def 'fake call with #deprecationTracePropertyName=true logs full stack trace.'() {
            given:
            System.setProperty(deprecationTracePropertyName, 'true')
            useStackTrace(fakeStackTrace)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

             * binary-only Gradle distribution without sources and documentation
             */
            BIN,
            /**
             * complete Gradle distribution with binaries, sources and documentation
             */
            ALL
        }
    
        /**
         * Specifies how the wrapper path should be interpreted.
         */
        public enum PathBase {
            PROJECT, GRADLE_USER_HOME
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

        private val internalTypesCodec: Codec<Any?>,
        private val ordinalGroups: OrdinalGroupFactory
    ) {
    
        suspend fun WriteContext.writeWork(work: ScheduledWork) {
            // Share bean instances across all nodes (except tasks, which have their own isolate)
            withGradleIsolate(owner, internalTypesCodec) {
                doWrite(work)
            }
        }
    
        suspend fun ReadContext.readWork(): ScheduledWork =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    When enabled, Gradle reuses information it collects about the file system between builds.
    +
    _Default is `true` on operating systems where Gradle supports this feature._
    
    `org.gradle.warning.mode=(all,fail,summary,none)`::
    When set to `all`, `summary`, or `none`, Gradle will use <<command_line_interface.adoc#sec:command_line_logging,different warning type display>>.
    +
    _Default is `summary`._
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        quickFeedbackCrossVersion(false, false, true),
    
        // Cross version tests select all versions to cover when run as part of this stage
        allVersionsCrossVersion(false, false, true, 240),
    
        // run integMultiVersionTest with all version to cover
        allVersionsIntegMultiVersion(false, true, false),
        parallel(false, true, false),
    
        noDaemon(false, true, false, 300),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    It is possible to write simple tasks like this one in a more compact way and directly in the build script without creating a separate class for the task.
    
    Let's register another task and call it `printVersionDynamic`.
    
    This time, we do not define a type for the task, which means the task will be of the general type `DefaultTask`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

         *
         * The `confs` mapping is structured as `fromConfiguration -&gt; [targetConf...]`. Targets are collected for all configurations in the `fromConfiguration` hierarchy.
         *   - '*' is a wildcard key, that matches _all_ `fromConfiguration values.
         *       - '*, !A' is a key that matches _all_ `fromConfiguration values _except_ 'A'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

    class FullExceptionFormatterTest extends Specification {
        def testDescriptor = new SimpleTestDescriptor()
        def testLogging = Mock(TestLogging)
        def formatter = new FullExceptionFormatter(testLogging)
    
        def "shows all exceptions that have occurred for a test"() {
            expect:
            formatter.format(testDescriptor, [new RuntimeException("oops"), new Exception("ouch")]) == """\
        java.lang.RuntimeException: oops
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

            when:
            def dupesWithCount = dupes.collectEntries { [it.key, it.value.size()]}
    
            then:
            dupesWithCount.isEmpty()
        }
    
        def "all files under lib directory are jars"() {
            when:
            def nonJarLibEntries = libZipEntries.findAll { !it.name.endsWith(".jar") }
    
            then:
            nonJarLibEntries.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    
    /**
     * Creates a container for managing named objects of the specified type.
     *
     * The specified type must have a public constructor which takes the name as a [String] parameter.
     *
     * All objects **MUST** expose their name as a bean property named `name`.
     * The name must be constant for the life of the object.
     *
     * @param T The type of objects for the container to contain.
     * @return The container.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top