Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,030 for multis (0.68 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    image::gradle-build-lifecycle.png[]
    
    == Step 2. Update the Settings File
    
    Add the following line to the top of the Settings file:
    
    [.multi-language-sample]
    =====
    .settings.gradle.kts
    [source, kotlin]
    ----
    println("SETTINGS FILE: This is executed during the initialization phase")
    ----
    =====
    [.multi-language-sample]
    =====
    .settings.gradle
    [source, groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    [[sec:test_report_aggregation_usage]]
    == Usage
    
    To use the Test Report Aggregation plugin, include the following in your build script:
    
    [.multi-language-text.lang-groovy]
    ----
    plugins {
        id 'test-report-aggregation'
    }
    ----
    [.multi-language-text.lang-kotlin]
    ----
    plugins {
        id("test-report-aggregation")
    }
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/istio-performance-dashboard.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("incubating/java/jvm-multi-project-with-code-coverage-distribution")
                displayName = "Aggregating code coverage with JaCoCo from an application/distribution (Incubating)"
                description = "Report code coverage on the application/distribution of a multi-module project using link:https://www.jacoco.org/jacoco/[JaCoCo]."
                category = "Java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    ====
    [.multi-language-sample]
    =====
    .app/build.gradle.kts
    [source,kotlin]
    ----
    tasks.build {
        group = myBuildGroup
    }
    
    tasks.check {
        group = myBuildGroup
        description = "Runs checks (including tests)."
    }
    
    tasks.named("run") {
        group = myBuildGroup
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .app/build.gradle
    [source,groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/build.sh

    # Builds the following Docker images for Linux ARM64. See the accompanying
    # Dockerfile for more details:
    # - gcr.io/tensorflow-sigs/build-arm64:jax-latest-multi-python
    # - gcr.io/tensorflow-sigs/build-arm64:tf-latest-multi-python
    
    set -exo pipefail
    
    function is_continuous_or_release() {
      [[ "$KOKORO_JOB_TYPE" == "CONTINUOUS_INTEGRATION" ]] || [[ "$KOKORO_JOB_TYPE" == "RELEASE" ]]
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    You can also generate a Javadoc JAR for your library:
    
    .build.gradle.kts
    [source.multi-language-sample,kotlin]
    ----
    java {
        withJavadocJar()
    }
    ----
    
    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    java {
        withJavadocJar()
    }
    ----
    
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    plugins {
        // Apply the application plugin to add support for building a CLI application in Java.
        application
    }
    ----
    =====
    [.multi-language-sample]
    =====
    [source, groovy]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Range.groovy

     */
    class Range {
        private final long millis
    
        Range(long millis) {
            this.millis = millis
        }
    
        @Override
        String toString() {
            return "[approx $millis millis]"
        }
    
        boolean isCase(Duration duration) {
            def actualMillis = duration.millis
            return actualMillis > millis - 500 && actualMillis < millis + 2000
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4XCTest.groovy

                                quotes also on a line of their own.
                                Multi-line strings also let you write "quote marks"
                                freely inside your strings, which is great!
                                """
                            XCTAssertNotNil(longMessage.range(of: """
                                    Multi-line strings also let you write "quote marks"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top