Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for vols (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    You can also write them in Scala or Groovy but that is not recommended.
    
    Here is a breakdown of all options for implementing Gradle plugins:
    
    [cols="~,~,~,~,~"]
    |===
    |*#* |*Using:* |*Type:* |*The Plugin is:* |*Recommended?*
    
    |1
    |Kotlin DSL
    |Script plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    Generates the source files for all ANTLR grammars for the given source set.
    
    The ANTLR plugin adds the following dependencies to tasks added by the Java plugin.
    
    .ANTLR plugin - additional task dependencies
    [cols="a,a", options="header"]
    |===
    | Task name
    | Depends on
    | `compileJava`
    | `generateGrammarSource`
    
    | `compileTestJava`
    | `generateTestGrammarSource`
    
    | `compile__SourceSet__Java`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

         */
        private
        fun File.injectAgentOptions(separator: String) {
            if (agentJarNames.isEmpty()) {
                return
            }
            var replacementsCount = 0
            // readLines eats EOLs, so we need to use postfix to make sure the last line ends with EOL too.
            writeBytes(readLines().joinToString(separator = separator, postfix = separator) { line ->
                when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 24 10:25:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. docs/fr/docs/benchmarks.md

    Mais en prêtant attention aux tests de performance et aux comparaisons, il faut tenir compte de ce qu'il suit.
    
    ## Tests de performance et rapidité
    
    Lorsque vous vérifiez les tests de performance, il est commun de voir plusieurs outils de différents types comparés comme équivalents.
    
    En particulier, on voit Uvicorn, Starlette et FastAPI comparés (parmi de nombreux autres outils).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [[sec:dependency_management]]
    == Dependency management
    The Test Report Aggregation plugin adds the following dependency configurations:
    
    .Test Report Aggregation plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `testReportAggregation`
    | The configuration used to declare all project dependencies having test result data to be aggregated.
    | `aggregateTestReportResults`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

        def setup() {
            progressArea.resizeBuildProgressTo(4);
            newLineListener.beforeNewLineWritten(_, _) >> {
                progressArea.newLineAdjustment();
            }
    
            consoleMetaData.cols >> Integer.MAX_VALUE
    
            progressArea.visible = true
        }
    
        def "scrolls the console with new lines when redrawing an empty work in progress area"() {
            when:
            progressArea.setVisible(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    [[sec:checkstyle_dependency_management]]
    == Dependency management
    
    The Checkstyle plugin adds the following dependency configurations:
    
    .Checkstyle plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `checkstyle`
    | The Checkstyle libraries to use
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultRedrawableLabelTest.groovy

        def ansiExecutor = new DefaultAnsiExecutor(target, colorMap, factory, consoleMetaData, writeCursor, listener)
        def label = new DefaultRedrawableLabel(Cursor.from(writeCursor))
    
        def setup() {
            consoleMetaData.cols >> Integer.MAX_VALUE
        }
    
        def "setting plain text to the label will only write the text to ansi"() {
            given:
            label.text = "text"
    
            when:
            redraw()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    [[sec:dependency_management]]
    == Dependency management
    The JaCoCo Report Aggregation plugin adds the following dependency configurations:
    
    .JaCoCo Report Aggregation plugin - dependency configurations
    [cols="a,a", options="header"]
    |===
    | Name
    | Meaning
    
    | `jacocoAggregation`
    | The configuration used to declare all project dependencies having code coverage data to be aggregated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top