Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Scans (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_scans.adoc

    image::build-scan-2.png[]
    
    == Enable Build Scans
    
    To enable build scans on a gradle command, add `--scan` to the command line option:
    
    [source,text]
    ----
     ./gradlew build --scan
    ----
    
    You may be prompted to agree to the terms to use Build Scans.
    
    Vist the link:https://scans.gradle.com/[Build Scans page] to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

            <span class="badge-text">How to Use Build Scans&nbsp;&nbsp;&nbsp;&gt;</span>
        </a>
    </div>
    ++++
    
    Gradle provides multiple ways to inspect your build:
    
    - Profile with build scans
    - Local profile reports
    - Low level profiling
    
    == What is a build scan?
    
    https://scans.gradle.com/[Build scans] are a persistent, shareable record of what happened when running a build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. cmd/metrics-v3-scanner.go

    )
    
    var (
    	scannerBucketScansFinishedMD = NewCounterMD(scannerBucketScansFinished,
    		"Total number of bucket scans finished since server start")
    	scannerBucketScansStartedMD = NewCounterMD(scannerBucketScansStarted,
    		"Total number of bucket scans started since server start")
    	scannerDirectoriesScannedMD = NewCounterMD(scannerDirectoriesScanned,
    		"Total number of directories scanned since server start")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. gradle.properties

    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    kotlin.stdlib.default.dependency=false
    kotlin.js.ir.output.granularity=whole-program
    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/LegacyGradleEnterpriseCheckInConfigCachingIntegTest.groovy

            }
    
            buildFile << """
                task t
            """
    
            when:
            succeeds "t", "--configuration-cache"
    
            then:
            scanPlugin.assertUnsupportedMessage(output, "Build scans have been disabled due to incompatibility between your Gradle Enterprise plugin version (3.3.4) and configuration caching. Please use Gradle Enterprise plugin version 3.4 or later for compatibility with configuration caching.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

          run: ./gradlew --no-configuration-cache --init-script .github/workflows/codeql-analysis.init.gradle -DcacheNode=us -S testClasses -Dhttp.keepAlive=false
          env:
            # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
            DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
            # Potential stop-gap solution for ReadTimeout issues with the Gradle Build Cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    A rise in the hit rate there probably indicates better usage by developers:
    
    [.screenshot]
    image::build-cache/cache-admin-hit-rate.png[build cache hit rate]
    
    == Analyzing performance in build scans
    
    Build scans provide a summary of all cache operations for a build via the _"Build cache"_ section of the _"Performance"_ page.
    
    [.screenshot]
    image::build-cache/build-cache-performance.png[build cache performance]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A means to expose Daemon information _specifically_ for the purpose of build scans. The associated plugin obtains this via the service registry and queries all values when it is applied.
     *
     * This API is a contract with the plugin. Any binary incompatible changes will require changes to the plugin.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. .github/workflows/contributor-pr.yml

      cancel-in-progress: true
    
    env:
      # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
      DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Binary plugin
    |an abstract class that implements the `apply(Project project)` method of the `Plugin<Project>` interface in Scala.
    |Nofootnote:2[]
    |===
    
    If you suspect issues with your plugin code, try creating a link:https://scans.gradle.com/[Build Scan] to identify bottlenecks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top