Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for Scans (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    = Important concepts
    
    How much of your build gets loaded from the cache depends on many factors.
    In this section you will see some of the tools that are essential for well-cached builds.
    https://gradle.com/build-scans[Build scans] are part of that toolchain and will be used throughout this guide.
    
    == Build cache key
    
    Artifacts in the build cache are uniquely identified by a <<build_cache.adoc#sec:task_output_caching_details,build cache key>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K 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. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

            }
    
            @Override
            public void applyTo(boolean value, StartParameterInternal settings, Origin origin) {
                if (value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K 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/authoring-builds/tutorial/partr1_gradle_init.adoc

    == Step 6. Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes is to publish a link:https://scans.gradle.com[Build Scan].
    To do so, run the `build` task again with the `--scan` flag.
    
    [source]
    ----
    $ ./gradlew build --scan
    > Task :app:compileJava UP-TO-DATE
    > Task :app:processResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder.go

    }
    
    // GuessJSONStream scans the provided reader up to size, looking
    // for an open brace indicating this is JSON. It will return the
    // bufio.Reader it creates for the consumer.
    func GuessJSONStream(r io.Reader, size int) (io.Reader, []byte, bool) {
    	buffer := bufio.NewReaderSize(r, size)
    	b, _ := buffer.Peek(size)
    	return buffer, b, hasJSONPrefix(b)
    }
    
    // IsJSONBuffer scans the provided buffer, looking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 21:24:36 UTC 2021
    - 10.2K bytes
    - Viewed (0)
Back to top