Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for Scans (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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/optimizing-performance/performance.adoc

    Neither will a project with lots of inter-subproject dependencies.
    But most multi-subproject builds see a reduction in build times.
    
    === Visualize parallelism with build scans
    
    Build scans give you a visual timeline of task execution. In the following
    example build, you can see long-running tasks at the beginning and end of the build:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. 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)
Back to top