Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for buildrundir (0.38 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. 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)
  6. 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)
Back to top