Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for Scans (0.04 sec)

  1. src/internal/abi/symtab.go

    	// SPWrite functions. Stopping at an SPWrite function is considered
    	// to be an incomplete unwinding of the stack. In certain contexts
    	// (in particular garbage collector stack scans) that is a fatal error.
    	FuncFlagSPWrite
    
    	// FuncFlagAsm indicates that a function was implemented in assembly.
    	FuncFlagAsm
    )
    
    // A FuncID identifies particular functions that need to be treated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/LegacyGradleEnterprisePluginCheckInService.java

            if (Boolean.getBoolean(UNSUPPORTED_TOGGLE)) {
                return UNSUPPORTED_TOGGLE_MESSAGE;
            } else if (buildModelParameters.isConfigurationCache()) {
                return "Build scans have been disabled due to incompatibility between your Gradle Enterprise plugin version (" + pluginVersion + ") and configuration caching. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    Consult the <<build_cache#build_cache,Build cache chapter>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    				"gcscandone", gp.gcscandone)
    			throw("scan missed a g")
    		}
    
    		i++
    	})
    }
    
    // ptrmask for an allocation containing a single pointer.
    var oneptrmask = [...]uint8{1}
    
    // markroot scans the i'th root.
    //
    // Preemption must be disabled (because this uses a gcWork).
    //
    // Returns the amount of GC work credit produced by the operation.
    // If flushBgCredit is true, then that credit is also flushed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/main/resources/footer.html

                        <li itemprop="name"><a href="https://gradle.com/develocity/" itemprop="url">Develocity</a></li>
                        <li itemprop="name"><a href="https://gradle.com/build-scans/" itemprop="url">Build Scan™</a></li>
                        <li itemprop="name"><a href="https://gradle.com/build-cache/" itemprop="url">Build Cache</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // scanned from numeric database columns into *string, scans into
    // numeric types are checked for overflow. For example, a float64 with
    // value 300 or a string with value "300" can scan into a uint16, but
    // not into a uint8, though float64(255) or "255" can scan into a
    // uint8. One exception is that scans of some float64 numbers to
    // strings may lose information when stringifying. In general, scan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top