Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 235 for Executable (0.24 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    		return 0, nil
    	}
    
    	switch fh.Type {
    	case elf.ET_EXEC:
    		if loadSegment == nil {
    			// Assume fixed-address executable and so no adjustment.
    			return 0, nil
    		}
    		if stextOffset == nil && start > 0 && start < 0x8000000000000000 {
    			// A regular user-mode executable. Compute the base offset using same
    			// arithmetics as in ET_DYN case below, see the explanation there.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                    if (exe.isAbsolute()) {
                        builder.executable(exe.getAbsolutePath());
                    } else {
                        builder.executable(String.format("%s/%s", getWorkingDir().getAbsolutePath(), getExecutable()));
                    }
                } else {
                    builder.executable(String.format("%s/bin/gradle", getDistribution().getGradleHomeDir().getAbsolutePath()));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    Depends on: All tasks which contribute to the link executable, including `link__Variant__` and `create__Variant__` tasks from projects that are resolved via project dependencies and tested component
    ::
    Links executable from compiled object files using the selected linker.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

                group = 'org.gradle'
                version = '2.0'
    
                dependencies {
                    implementation "org.test:greeter:latest.integration"
                }
            """
            fixture.executable.writeToProject(testDirectory)
    
            when:
            succeeds ':xcode'
    
            then:
            result.assertTasksExecuted(":greeter:compileDebugSwift",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

        /**
         * {@inheritDoc}
         */
        @Override
        public Test executable(Object executable) {
            forkOptions.executable(executable);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setExecutable(String executable) {
            forkOptions.setExecutable(executable);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  6. src/os/exec/lp_windows_test.go

    	"slices"
    	"strings"
    	"testing"
    )
    
    func init() {
    	registerHelperCommand("printpath", cmdPrintPath)
    }
    
    func cmdPrintPath(args ...string) {
    	exe, err := os.Executable()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "Executable: %v\n", err)
    		os.Exit(1)
    	}
    	fmt.Println(exe)
    }
    
    // makePATH returns a PATH variable referring to the
    // given directories relative to a root directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. LICENSE

    which the executable runs, unless that component itself accompanies
    the executable.
    
      It may happen that this requirement contradicts the license
    restrictions of other proprietary libraries that do not normally
    accompany the operating system.  Such a contradiction means you cannot
    use both them and the Library together in an executable that you
    distribute.
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            os.getScriptName("a") == "a.bat"
            os.getScriptName("a.exe") == "a.bat"
            os.getScriptName("a.b/c") == "a.b/c.bat"
            os.getScriptName("a.b\\c") == "a.b\\c.bat"
        }
    
        def "windows transforms executable names"() {
            def os = new OperatingSystem.Windows()
    
            expect:
            os.executableSuffix == ".exe"
            os.getExecutableName("a.exe") == "a.exe"
            os.getExecutableName("a.EXE") == "a.EXE"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ScalaCompileJavaToolchainIntegrationTest.groovy

            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.getDifferentVersion()
    
            if (option == "executable") {
                buildFile << """
                    compileScala {
                        options.fork = true
                        options.forkOptions.executable = "${TextUtil.normaliseFileSeparators(otherJdk.javaExecutable.absolutePath)}"
                    }
                """
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 03:32:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileToolchainIntegrationTest.groovy

            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.getDifferentVersion()
    
            if (option == "executable") {
                buildFile << """
                    compileGroovy {
                        options.fork = true
                        options.forkOptions.executable = "${TextUtil.normaliseFileSeparators(otherJdk.javaExecutable.absolutePath)}"
                    }
                """
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:37:16 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top