Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 148 for Scans (0.03 sec)

  1. 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)
  2. 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)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/ExecutePlannedTransformStepBuildOperationType.java

             *
             * Not used by build scans but for TAPI events in {@code TransformOperationMapper}.
             */
            @NotUsedByScanPlugin
            String getTransformerName();
    
            /**
             * Returns the display name of the transform step subject.
             *
             * Not used by build scans but for TAPI events in {@code TransformOperationMapper}.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. README.md

    * [Building Swift Libraries](https://docs.gradle.org/current/samples/sample_building_swift_libraries.html)
    * [Creating Build Scans](https://scans.gradle.com/)
    
    ## Stay in Flow
    Enjoy first-class Gradle support in your IDE of choice.
    
    * [Android Studio](https://developer.android.com/studio/build/index.html)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         *
         * The given `baseDir` path is evaluated as per [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.
         *
         * @param baseDir The base directory of the file tree. Evaluated as per [file].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    === Build scan integration
    
    The sample project is equipped with support for generating link: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
    - 5.8K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/30_contributor_regression.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
    - 2.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanScopeIdsIntegrationTest.groovy

    import org.junit.Rule
    
    class BuildScanScopeIdsIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule
        public final ScopeIdsFixture scopeIds = new ScopeIdsFixture(executer, temporaryFolder)
    
        def "exposes scans view of scope IDs"() {
            when:
            buildScript """
                def ids = project.gradle.services.get($BuildScanScopeIds.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/overview/userguide.adoc

    Gradle, Inc. provides a free service called https://scans.gradle.com/[Build Scan®] that provides extensive information and insights about your builds.
    You can view scans to identify problems or share them for debugging help.
    
    === Supported Languages and Frameworks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/version/version.go

    			fmt.Fprintf(os.Stderr, "%v\n", err)
    			base.SetExitStatus(1)
    			continue
    		}
    		if info.IsDir() {
    			scanDir(arg)
    		} else {
    			scanFile(arg, info, true)
    		}
    	}
    }
    
    // scanDir scans a directory for binary to run scanFile on.
    func scanDir(dir string) {
    	filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {
    		if d.Type().IsRegular() || d.Type()&fs.ModeSymlink != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top