Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,359 for Executable (0.48 sec)

  1. src/os/exec/lp_windows.go

    package exec
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in %PATH%")
    
    func chkStat(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	if d.IsDir() {
    		return fs.ErrPermission
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProvider.java

        CompilerType getCompilerType();
    
        interface CompilerExecSpec {
            CompilerExecSpec environment(String key, String value);
            CompilerExecSpec executable(File executable);
            CompilerExecSpec args(Iterable<String> args);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

            JavaForkOptions forkOptions = forkOptionsFactory.newJavaForkOptions();
            task.copyTo(forkOptions);
            String executable = forkOptions.getExecutable();
            return new DefaultTestTaskForkOptions(
                forkOptions.getWorkingDir(),
                executable,
                detectJavaVersion(executable),
                javaModuleDetector.inferClasspath(testIsModule, task.getClasspath()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.AbstractExecTask.xml

                </tr>
                <tr>
                    <td>argumentProviders</td>
                </tr>
                <tr>
                    <td>commandLine</td>
                </tr>
                <tr>
                    <td>executable</td>
                </tr>
                <tr>
                    <td>workingDir</td>
                </tr>
                <tr>
                    <td>environment</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.JavaExec.xml

                </tr>
                <tr>
                    <td>classpath</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>executable</td>
                    <td><filename>java</filename> executable for current JVM</td>
                </tr>
                <tr>
                    <td>workingDir</td>
                    <td><literal>project.projectDir</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            def executable = executable("build/exe/main/${variantContext.asPath}${module}")
            return variantContext.buildType.name == 'release' ? executable.strippedRuntimeFile : executable.file
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/scripttest/scripttest.go

    //
    // This set includes all of the conditions in script.DefaultConds,
    // as well as:
    //
    //   - Conditions of the form "exec:foo" are active when the executable "foo" is
    //     found in the test process's PATH, and inactive when the executable is
    //     not found.
    //
    //   - "short" is active when testing.Short() is true.
    //
    //   - "verbose" is active when testing.Verbose() is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 11 20:12:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/testdata/issue53989/main.go

    // to the function with the same name in the main
    // executable. As these two functions may be compiled
    // differently as plugin needs to be PIC, this causes
    // crash.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/issue53989/p"
    )
    
    func main() {
    	p.Square(7) // call the function in main executable
    
    	p, err := plugin.Open("issue53989.so")
    	if err != nil {
    		panic(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 751 bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                model {
                    components {
                        main(NativeExecutableSpec)
                    }
                }
             """
    
            expect:
            succeeds "mainExecutable"
            executable("build/exe/main/main").exec().out == app.expectedOutput(toolChain)
        }
    
        @ToBeFixedForConfigurationCache
        def "can manually define C source sets"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalCompileIntegrationTest.groovy

    class CppIncrementalCompileIntegrationTest extends AbstractInstalledToolChainIntegrationSpec implements CppTaskNames {
    
        @ToBeFixedForConfigurationCache
        def "skips compile and link tasks for executable when source doesn't change"() {
            def app = new CppApp()
            settingsFile << "rootProject.name = 'app'"
    
            given:
            app.writeToProject(testDirectory)
    
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top