Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 208 for noscan (0.09 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfigProvider.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.config;
    
    /**
     * A service that provides the build scan configuration.
     *
     * Obtained via the root project's gradle object's service registry.
     *
     * @since 4.0
     */
    public interface BuildScanConfigProvider {
    
        /**
         * Invoked by the scan plugin to “collect” the configuration.
         *
         * Will only be called once per build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. src/math/big/natconv_test.go

    		x, b, count, err := nat(nil).scan(r, a.base, a.frac)
    		if err != a.err {
    			t.Errorf("scan%+v\n\tgot error = %v; want %v", a, err, a.err)
    		}
    		if x.cmp(a.x) != 0 {
    			t.Errorf("scan%+v\n\tgot z = %v; want %v", a, x, a.x)
    		}
    		if b != a.b {
    			t.Errorf("scan%+v\n\tgot b = %d; want %d", a, b, a.base)
    		}
    		if count != a.count {
    			t.Errorf("scan%+v\n\tgot count = %d; want %d", a, count, a.count)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/AlreadyOnClasspathPluginResolver.java

            ) {
                // The JAR that contains the enterprise plugin also contains the build scan plugin.
                // If the user is in the process of migrating to Gradle 6 and has not yet moved away from the scan plugin,
                // they might hit this scenario when running with --scan as that will have auto applied the new plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. cmd/mrf.go

    			scan := madmin.HealNormalScan
    			if u.scanMode != 0 {
    				scan = u.scanMode
    			}
    			if u.object == "" {
    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. .github/workflows/osv-scanner-scheduled.yml

    name: OSV-Scanner Scheduled Scan
    
    on:
      schedule:
        - cron: 0 4 * * 1
    
    permissions:
      # Require writing security events to upload SARIF file to security tab
      security-events: write
      # Only need to read contents
      contents: read
    
    jobs:
      scan-scheduled:
        if: github.repository == 'tensorflow/tensorflow'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:09:49 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

          description: What version of Gradle are you running?
        validations:
          required: true
      - 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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/troubleshooting-task-execution-build-scan.png

    troubleshooting-task-execution-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java

        /**
         * Gets the list of group ids to scan for the plugin prefix.
         *
         * @return The list of group ids to scan for the plugin prefix, never {@code null}.
         */
        List<String> getPluginGroups();
    
        /**
         * Sets the list of group ids to scan for the plugin prefix.
         *
         * @param pluginGroups The list of group ids to scan for the plugin prefix, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanClockIntegTest.groovy

     */
    
    package org.gradle.internal.enterprise.legacy
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.scan.time.BuildScanClock
    
    class BuildScanClockIntegTest extends AbstractIntegrationSpec {
    
        def "can access build scan time provider"() {
            when:
            buildFile << """
                def time = project.services.get($BuildScanClock.name).currentTime
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dynamic-dependency-build-scan.png

    dependency-management-dynamic-dependency-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top