Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for buildrundir (0.15 sec)

  1. test/asmhdr.go

    // buildrundir
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test the -asmhdr output of the compiler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 30 18:30:05 UTC 2021
    - 237 bytes
    - Viewed (0)
  2. test/linknameasm.go

    // buildrundir
    
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build amd64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 210 bytes
    - Viewed (0)
  3. test/fixedbugs/issue37513.go

    // buildrundir
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (linux && amd64) || (darwin && amd64) || (linux && 386)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 260 bytes
    - Viewed (0)
  4. test/retjmp.go

    // buildrundir
    
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that return jump works correctly in assembly code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 01 21:11:16 UTC 2018
    - 252 bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    		cmd = append(cmd, flags...)
    		cmd = append(cmd, "-o", "a.exe", long)
    		_, err := runcmd(cmd...)
    		return err
    
    	case "builddir", "buildrundir":
    		// Build an executable from all the .go and .s files in a subdirectory.
    		// Run it and verify its output in the buildrundir case.
    		longdir := filepath.Join(t.gorootTestDir, t.goDirName())
    		files, err := os.ReadDir(longdir)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPrecompiledScriptPluginsSmokeTest.groovy

                }
            """
            def buildRunner = runner('publishAllPublicationsToPluginRepository')
                .withGradleVersion(pluginPublishGradleVersion)
                .withProjectDir(file('plugin-build'))
                .forwardOutput()
    
            if (pluginPublishGradleVersion.startsWith("6")) {
                // Writing build operation traces is broken with Gradle 6.
                buildRunner.withoutBuildOperationTracing()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. subprojects/core/src/testFixtures/groovy/org/gradle/internal/operations/BuildOperationExecutorSupport.java

                return new DefaultBuildOperationExecutor(
                    buildRunner(),
                    CurrentBuildOperationRef.instance(),
                    queueFactory,
                    executorFactory,
                    workerLimits);
            }
    
            private BuildOperationRunner buildRunner() {
                if (runner != null) {
                    return runner;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.runner.Result run(org.junit.runner.Request, org.junit.runner.JUnitCore); public org.junit.runner.Request sortRequest(org.junit.runner.Request); private org.junit.runner.Request constructLeafRequest(java.util.List); private org.junit.runner.Runner buildRunner(org.junit.runner.Description); private Class getMalformedTestClas(org.junit.runner.Description); public java.util.List sortedLeavesForTest(org.junit.runner.Request); private java.util.List findLeaves(org.junit.runner.Request); private void find...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top