Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 727 for scanp (0.05 sec)

  1. gradle.properties

    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    kotlin.stdlib.default.dependency=false
    kotlin.js.ir.output.granularity=whole-program
    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/time/BuildScanClock.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scan.time;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A view of the Gradle runtime's clock used by build scans.
     *
     * The provider is _required_ to provide monotonic timestamps.
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/runtime/mgcmark.go

    	fixedRootFreeGStacks
    	fixedRootCount
    
    	// rootBlockBytes is the number of bytes to scan per data or
    	// BSS root.
    	rootBlockBytes = 256 << 10
    
    	// maxObletBytes is the maximum bytes of an object to scan at
    	// once. Larger objects will be split up into "oblets" of at
    	// most this size. Since we can scan 1–2 MB/ms, 128 KB bounds
    	// scan preemption at ~100 µs.
    	//
    	// This must be > _MaxSmallSize so that the object base is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. build-logic/profiling/src/main/kotlin/gradlebuild.buildscan.gradle.kts

        if (!isTravis) {
            link("CI CompileAll Scan", customValueSearchUrl(mapOf(gitCommitName to commitId)) + "&search.tags=CompileAll")
        }
    }
    
    fun customValueSearchUrl(search: Map<String, String>): String {
        val query = search.map { (name, value) ->
            "search.names=${name.urlEncode()}&search.values=${value.urlEncode()}"
        }.joinToString("&")
    
        return "$serverUrl/scans?$query"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. 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)
  6. .github/workflows/codeql-analysis.yml

        - name: Compile with Gradle with Build Scan
          if: ${{ matrix.language == 'java' && github.repository_owner == 'gradle' }}
          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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ==== Visualize dependency resolution with build scans
    
    The "Dependency resolution" tab on the performance page of a build scan shows dependency
    resolution time during the configuration and execution phases:
    
    image::performance/bad-dependency-resolution.png[title="Dependency resolution at configuration time"]
    
    Build scans provide another means of identifying this issue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K 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/overview/userguide.adoc

    Gradle, Inc. provides a free service called https://scans.gradle.com/[Build Scan®] that provides extensive information and insights about your builds.
    You can view scans to identify problems or share them for debugging help.
    
    === Supported Languages and Frameworks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    		scan.scan()
    		for last := []byte{}; len(scan.token) > 2; scan.scan() {
    			if bytes.Compare(scan.token, last) != -1 {
    				// Attributes are unsorted. Start over from scratch.
    				p := attrStart + 1
    				scan.next = p
    				attrs := [][]byte{}
    				for scan.scan(); len(scan.token) > 2; scan.scan() {
    					attrs = append(attrs, scan.token)
    					end = scan.end
    				}
    				sort.Sort(bytesSort{attrs, 3})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top