Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A means to expose Daemon information _specifically_ for the purpose of build scans. The associated plugin obtains this via the service registry and queries all values when it is applied.
     *
     * This API is a contract with the plugin. Any binary incompatible changes will require changes to the plugin.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.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>
         *
         * <pre class='autoTested'>
         * def myTree = fileTree("src")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. .github/workflows/contributor-pr.yml

      cancel-in-progress: true
    
    env:
      # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
      DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Binary plugin
    |an abstract class that implements the `apply(Project project)` method of the `Plugin<Project>` interface in Scala.
    |Nofootnote:2[]
    |===
    
    If you suspect issues with your plugin code, try creating a link:https://scans.gradle.com/[Build Scan] to identify bottlenecks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    <<dependency_management_basics.adoc#dependency_management_basics,Part 6.>> Dependency Management +
    <<task_basics.adoc#task_basics,Part 7.>> Tasks +
    <<plugin_basics.adoc#plugin_basics,Part 8.>> Plugins +
    <<build_scans.adoc#build_scans,Part 9.>> Build Scans +
    <<gradle_optimizations.adoc#gradle_optimizations,Part 10.>> Gradle Optimizations +
    
    [[getting_started]]
    == 2. Gradle Tutorial
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

            if (Boolean.getBoolean(UNSUPPORTED_TOGGLE)) {
                return UNSUPPORTED_TOGGLE_MESSAGE;
            } else if (buildModelParameters.isConfigurationCache()) {
                return "Build scans have been disabled due to incompatibility between your Gradle Enterprise plugin version (" + pluginVersion + ") and configuration caching. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/progress/DefaultProgressLoggerFactory.java

            BuildOperationCategory buildOperationCategory = BuildOperationCategory.toCategory(metadata);
            if (buildOperationCategory == BuildOperationCategory.TASK) {
                // This is a legacy quirk.
                // Scans use this to determine that progress logging is indicating start/finish of tasks.
                // This can be removed in Gradle 5.0 (along with the concept of a “logging category” of an operation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    Consult the <<build_cache#build_cache,Build cache chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    				"gcscandone", gp.gcscandone)
    			throw("scan missed a g")
    		}
    
    		i++
    	})
    }
    
    // ptrmask for an allocation containing a single pointer.
    var oneptrmask = [...]uint8{1}
    
    // markroot scans the i'th root.
    //
    // Preemption must be disabled (because this uses a gcWork).
    //
    // Returns the amount of GC work credit produced by the operation.
    // If flushBgCredit is true, then that credit is also flushed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top