Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for Scans (0.06 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. src/text/template/parse/lex.go

    				return l.emit(itemBool)
    			default:
    				return l.emit(itemIdentifier)
    			}
    		}
    	}
    }
    
    // lexField scans a field: .Alphanumeric.
    // The . has been scanned.
    func lexField(l *lexer) stateFn {
    	return lexFieldOrVariable(l, itemField)
    }
    
    // lexVariable scans a Variable: $Alphanumeric.
    // The $ has been scanned.
    func lexVariable(l *lexer) stateFn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/GuidesContributeIncludeProcessorTest.groovy

                |= Doctitle
                |
                |include::contribute[guide-name="creating-build-scans"]
                |""".stripMargin()
    
            when:
            String content = asciidoctor.convert(asciidocContent, [:])
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/templates/spring-boot-web-application/HELP.md

    ### Additional Links
    These additional references should also help you:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/config_gradle.adoc

    link:https://scans.gradle.com[Build scans] will tell you information about the JVM that executed the build when you use the `--scan` option:
    
    [caption= "Build Environment in build scans",link=https://scans.gradle.com/s/sample/cpp-parallel/infrastructure]
    image::build-scan-infrastructure.png[Build Environment in Build Scan]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. build-logic/profiling/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins that configure profiling tools (jmh and build scans)"
    
    dependencies {
        implementation("com.gradle:develocity-gradle-plugin")
    
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":documentation"))
    
        implementation("me.champeau.jmh:jmh-gradle-plugin")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 430 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         * as per {@link #file(Object)}.</p>
         *
         * <p>The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top