Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 126 for Scans (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/image/names.go

    func (c *Uniform) At(x, y int) color.Color { return c.C }
    
    func (c *Uniform) RGBA64At(x, y int) color.RGBA64 {
    	r, g, b, a := c.C.RGBA()
    	return color.RGBA64{uint16(r), uint16(g), uint16(b), uint16(a)}
    }
    
    // Opaque scans the entire image and reports whether it is fully opaque.
    func (c *Uniform) Opaque() bool {
    	_, _, _, a := c.C.RGBA()
    	return a == 0xffff
    }
    
    // NewUniform returns a new [Uniform] image of the given color.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais.go

    // and always room at the top level), which eliminates all but
    // the first freq_I_B text scans (that is, 5 of the 6).
    // So the top level of the recursion only does 22 - 6 - 5 = 11
    // input-sized scans and a typical level does 16 scans.
    //
    // The linear scans do not cost anywhere near as much as
    // the random accesses to the text made during a few of
    // the scans (specifically #6, #9, #16, #19, #22 marked above).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler.java

            spec.setEffectiveAnnotationProcessors(annotationProcessors);
            return delegate.execute(spec);
        }
    
        /**
         * Scans the processor path for processor declarations. Filters them if the explicit <code>-processor</code> argument is given.
         * Treats explicit processors that didn't have a matching declaration on the path as non-incremental.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.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
    - 8.3K bytes
    - Viewed (0)
  8. .github/workflows/codeql-analysis.yml

          run: ./gradlew --no-configuration-cache --init-script .github/workflows/codeql-analysis.init.gradle -DcacheNode=us -S testClasses -Dhttp.keepAlive=false
          env:
            # Set the DEVELOCITY_ACCESS_KEY so that Gradle Build Scans are generated
            DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
            # Potential stop-gap solution for ReadTimeout issues with the Gradle Build Cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/image/image.go

    	if r.Empty() {
    		return &RGBA{}
    	}
    	i := p.PixOffset(r.Min.X, r.Min.Y)
    	return &RGBA{
    		Pix:    p.Pix[i:],
    		Stride: p.Stride,
    		Rect:   r,
    	}
    }
    
    // Opaque scans the entire image and reports whether it is fully opaque.
    func (p *RGBA) Opaque() bool {
    	if p.Rect.Empty() {
    		return true
    	}
    	i0, i1 := 3, p.Rect.Dx()*4
    	for y := p.Rect.Min.Y; y < p.Rect.Max.Y; y++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    A rise in the hit rate there probably indicates better usage by developers:
    
    [.screenshot]
    image::build-cache/cache-admin-hit-rate.png[build cache hit rate]
    
    == Analyzing performance in build scans
    
    Build scans provide a summary of all cache operations for a build via the _"Build cache"_ section of the _"Performance"_ page.
    
    [.screenshot]
    image::build-cache/build-cache-performance.png[build cache performance]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top