Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 223 for Sall (0.04 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

         * </p>
         *
         * <p>
         * This method is exposed to the command line interface. Example usage:
         * <pre>gradle dependencyInsight --all-variants</pre>
         *
         * @since 7.5
         */
        @Option(option = "all-variants", description = "Show all variants of each dependency")
        @Incubating
        @Internal
        public Property<Boolean> getShowingAllVariants() {
            return showingAllVariants;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

        }
    
        // Previously StartParameter's toString got wildly out of sync with the state inside of it
        // Ensure that all state is represented in the toString, so it's more useful for debugging
        // In the future StartParameter should be replaced with a `record` so this doesn't need to be checked
        void "all state is represented in toString"() {
            given:
            def parameter = new StartParameter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. JavadocStyleGuide.md

    ```
    
    ## 1.3 Code blocks and snippets
    
    `<pre>` is the default HTML tag for preformatted text.
    All code blocks and multi-line snippets should be wrapped in `<pre>{@code ...... }</pre>` at minimum.
    
    Code blocks can be optionally formatted and highlighted using [`highlight.js`](https://highlightjs.org/) with the `<code>` tag.
    For this, all code blocks and multi-line snippets should be wrapped in `<code class="language-*****"></code>`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. .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)
  8. 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)
  9. 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)
  10. 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)
Back to top