Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 235 for Executable (0.44 sec)

  1. src/cmd/go/internal/clean/clean.go

    		p.DefaultExecName()+".test.exe",
    	)
    
    	// Remove a potential executable, test executable for each .go file in the directory that
    	// is not part of the directory's package.
    	for _, dir := range dirs {
    		name := dir.Name()
    		if packageFile[name] {
    			continue
    		}
    
    		if dir.IsDir() {
    			continue
    		}
    
    		if base, found := strings.CutSuffix(name, "_test.go"); found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            "java home"  | 'options.forkOptions.javaHome = file("<path>")' | ''
            "executable" | 'options.forkOptions.executable = "<path>"'     | OperatingSystem.current().getExecutableName('/bin/javac')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21367")
        def "emits toolchain usages for test that configures executable path"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. src/debug/buildinfo/buildinfo.go

    type BuildInfo = debug.BuildInfo
    
    // errUnrecognizedFormat is returned when a given executable file doesn't
    // appear to be in a known format, or it breaks the rules of that format,
    // or when there are I/O errors reading the file.
    var errUnrecognizedFormat = errors.New("unrecognized file format")
    
    // errNotGoExe is returned when a given executable file is valid but does
    // not contain Go build information.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                +--- lib:sharedLibrary NOT BUILDABLE
                |    \\--- main:executable
                \\--- lib:staticLibrary NOT BUILDABLE
    
                main - Components that depend on native executable 'main'
                \\--- main:executable
    
                util - Components that depend on native library 'util'
                +--- util:sharedLibrary
                |    +--- lib:sharedLibrary NOT BUILDABLE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            debugX86Binary.compilationDetails.compileTask.path == ":compileDebugX86Cpp"
            debugX86Binary.compilationDetails.compileTask.name == "compileDebugX86Cpp"
            debugX86Binary.linkageDetails.outputLocation == toolchain.executable(file("build/exe/main/debug/x86/app")).file
            debugX86Binary.linkageDetails.additionalArgs.empty
            debugX86Binary.linkageDetails.linkTask.path == ":linkDebugX86"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

    import java.util.stream.Stream;
    
    import static org.gradle.language.nativeplatform.internal.Dimensions.tryToBuildOnHost;
    
    /**
     * A plugin that sets up the infrastructure for testing C++ binaries using a simple test executable.
     *
     * Gradle will create a {@link RunTestExecutable} task that relies on the exit code of the binary.
     *
     * @since 4.4
     */
    public abstract class CppUnitTestPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    - Where to find the built testable bundle (on macOS) or executable (on Linux) (property: link:{groovyDslPath}/org.gradle.nativeplatform.test.xctest.tasks.XCTest.html#org.gradle.nativeplatform.test.xctest.tasks.XCTest:testInstallDirectory[XCTest.getTestInstalledDirectory()])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPlugin.java

                bundle.getRunScriptFile().set(install.flatMap(task -> task.getRunScriptFile()));
            } else {
                DefaultSwiftXCTestExecutable executable = (DefaultSwiftXCTestExecutable) binary;
                executable.getRunScriptFile().set(executable.getInstallTask().flatMap(task -> task.getRunScriptFile()));
    
                // Rename `LinuxMain.swift` to `main.swift` so the entry point is correctly detected by swiftc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            def jvm = Jvm.current()
    
            then:
            jvm.isIbmJvm()
    
            where:
            vendorProperty << ['java.vendor', 'java.vm.vendor']
        }
    
        def "finds executable for java home supplied"() {
            System.properties['java.vm.vendor'] = 'Sun'
    
            when:
            def home = tmpDir.createDir("home")
            home.create {
                jre {
                    bin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            mainSolution.assertReferencesProject(dllProjectFile, projectConfigurations)
        }
    
        @Requires(IntegTestPreconditions.HasMsBuild)
        def "can build executable from visual studio"() {
            useMsbuildTool()
            def debugBinary = executable("build/install/main/debug/lib/app")
    
            given:
            app.writeSources(file("src/main"))
            settingsFile << """
                rootProject.name = 'app'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top