Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 205 for scav (0.22 sec)

  1. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

    plugins {
        id("gradlebuild.internal.java")
        id("gradlebuild.performance-test")
    }
    
    description = """Performance tests for the build scan plugin
        | Run as part of the GE pipeline.
        | """.trimMargin()
    
    dependencies {
        performanceTestImplementation(project(":base-services"))
        performanceTestImplementation(project(":internal-testing"))
    
        performanceTestCompileOnly(project(":internal-integ-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/pack/pack.go

    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.printContents)
    	case 'r':
    		ar = openArchive(os.Args[2], os.O_RDWR|os.O_CREATE, os.Args[3:])
    		ar.addFiles()
    	case 'c':
    		ar = openArchive(os.Args[2], os.O_RDWR|os.O_TRUNC|os.O_CREATE, os.Args[3:])
    		ar.addPkgdef()
    		ar.addFiles()
    	case 't':
    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.tableOfContents)
    	case 'x':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    platforms/enterprise/enterprise/                        @gradle/bt-build-scan @gradle/dv-testing-team @gradle/dv-build-insights-team @ldaley
    platforms/enterprise/enterprise-logging/                @gradle/bt-build-scan @gradle/dv-build-insights-team @gradle/dv-testing-team
    platforms/enterprise/enterprise-operations/             @gradle/bt-build-scan
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. test/linknameasm.dir/x.go

    package main
    
    import (
    	"runtime"
    	_ "unsafe"
    )
    
    //go:linkname asm
    func asm(*int)
    
    func main() {
    	x := new(int)
    	asm(x)
    }
    
    // called from asm
    func callback() {
    	runtime.GC() // scan stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 451 bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

            # Prefix the list here with "+" to use these queries and those in the config file.
            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        - name: Compile with Gradle with Build Scan
          if: ${{ matrix.language == 'java' && github.repository_owner == 'gradle' }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/environment/GradleBuildEnvironment.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.environment;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @UsedByScanPlugin
    @ServiceScope(Scope.Global.class)
    public interface GradleBuildEnvironment {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 947 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    * What went wrong:
    Execution failed for task ':compileJava'.
    > Compilation failed; see the compiler error output for details.
    
    * Try:
    > Run with --info option to get more log output.
    > Run with --scan to get full insights.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Nofootnote:2[]
    |===
    
    If you suspect issues with your plugin code, try creating a link:https://scans.gradle.com/[Build Scan] to identify bottlenecks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/exceptions/MultiCauseException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.exceptions;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.List;
    
    @UsedByScanPlugin
    public interface MultiCauseException extends ResolutionProvider {
        List<? extends Throwable> getCauses();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 861 bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	f, err := fsys.Open(filename)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    	var features []APIFeature
    	scan := bufio.NewScanner(f)
    	for scan.Scan() {
    		line := strings.TrimSpace(scan.Text())
    		if line == "" || line[0] == '#' {
    			continue
    		}
    		matches := apiFileLineRegexp.FindStringSubmatch(line)
    		if len(matches) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top