Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 148 for Scans (0.04 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/time/BuildScanClock.java

     */
    
    package org.gradle.internal.scan.time;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A view of the Gradle runtime's clock used by build scans.
     *
     * The provider is _required_ to provide monotonic timestamps.
     *
     * @since 4.2
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildScanClock {
    
        /**
         * The current wall clock time.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

      - type: input
        id: build-scan-url
        attributes:
          label: Build scan URL (optional)
          description: |
            You can run your build command with `--scan` to publish a Build Scan to [scans.gradle.com](https://scans.gradle.com/).
        validations:
          required: false
      - type: textarea
        id: environment
        attributes:
          label: Your Environment (optional)
          description: |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. 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)
  4. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

                if (isGhActions) {
                    tag("GH_ACTION")
                }
                whenEnvIsSet("BUILD_TYPE_ID") { buildType ->
                    value(tcBuildTypeName, buildType)
                    link("Build Type Scans", customValueSearchUrl(mapOf(tcBuildTypeName to buildType)))
                }
            }
        }
        if (isCodeQl) {
            buildScan {
                tag("CODEQL")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    // Scanner is implemented by any value that has a Scan method, which scans
    // the input for the representation of a value and stores the result in the
    // receiver, which must be a pointer to be useful. The Scan method is called
    // for any argument to [Scan], [Scanf], or [Scanln] that implements it.
    type Scanner interface {
    	Scan(state ScanState, verb rune) error
    }
    
    // Scan scans text read from standard input, storing successive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K 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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

         *
         * The given `baseDir` path is evaluated as per [KotlinInitScript.file].
         *
         * 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.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    To view dependencies using a https://scans.gradle.com/[Build Scan], run the build task with an optional `--scan` flag.
    
    In the `tutorial` directory, enter the command below and follow the prompt to accept the terms:
    [source,text]
    ----
    $ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 423ms
    7 actionable tasks: 7 up-to-date
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. build-logic/root-build/src/main/kotlin/gradlebuild.root-build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.internal.cc-experiment")
        id("gradlebuild.buildscan") // Reporting: Add more data through custom tags to build scans
        id("gradlebuild.ide") // Local development: Tweak IDEA import
        id("gradlebuild.dependency-analysis") // Auditing dependencies to find unused libraries
        id("gradlebuild.warmup-ec2") // Warm up EC2 AMI
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 05 12:37:04 UTC 2023
    - 979 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    === Build scan integration
    
    The sample project is equipped with support for generating https://scans.gradle.com/[build scans].
    Running the build with the command line option `--scan` renders a link in the console.
    
    [listing.terminal.sample-command]
    ----
    $ ./gradlew build --scan
    
    Publishing build scan...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top