Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for Scans (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    The _build comparison_ plugin has been deprecated and will be removed in the next major version of Gradle.
    
    link:https://gradle.com/build-scans[Build scans] show much deeper insights into your build and you can use link:https://gradle.com/develocity[Develocity] to directly compare two build's build-scans.
    
    === Potential breaking changes
    
    ==== User supplied Eclipse project names may be ignored on conflict
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			format = p
    		}
    	}
    
    	return &printfWrapper{
    		obj:    fn,
    		fdecl:  fdecl,
    		format: format,
    		args:   args,
    	}
    }
    
    // findPrintfLike scans the entire package to find printf-like functions.
    func findPrintfLike(pass *analysis.Pass, res *Result) (interface{}, error) {
    	// Gather potential wrappers and call graph between them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top