Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 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. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

        - name: Run build
          run: ./gradlew build
    ----
    
    https://scans.gradle.com[Gradle Build Scans®] are a great way to view your build results, and provide valuable insights into your build.
    The workflow is configured to automatically publish a Build Scan for each build, accepting the legal terms of use.
    If you don't wish to publish Build Scans, you can remove this configuration from the workflow.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    You can visualize dependencies with:
    
    - the built-in Gradle CLI `dependencies` task
    - the built-in Gradle CLI `dependencyInsight` task
    - link:https://scans.gradle.com/[build scans]
    
    [[sec:listing_dependencies]]
    == List Project Dependencies
    
    Gradle provides the built-in `dependencies` task to render a dependency tree from the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/image/jpeg/scan.go

    					// For progressive images, the interleaved scans (those with nComp > 1)
    					// are traversed as above, but non-interleaved scans are traversed left
    					// to right, top to bottom:
    					//	0 1 2 3
    					//	4 5 6 7
    					// Only DC scans (zigStart == 0) can be interleaved. AC scans must have
    					// only one component.
    					//
    					// To further complicate matters, for non-interleaved scans, there is no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    You can see a dependency tree and see which resolved dependency versions differed from what was requested by clicking the _Dependencies_ view and using the search functionality, specifying the resolution reason.
    
    .Debugging dependency conflicts with build scans
    image::troubleshooting-dependency-management-build-scan.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. .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)
Back to top