Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,294 for Executable (0.26 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeExecutableSpecTest.groovy

    class DefaultNativeExecutableSpecTest extends Specification {
        def executable = BaseComponentFixtures.create(NativeExecutableSpec, DefaultNativeExecutableSpec, new DefaultComponentSpecIdentifier("project-path", "someExe"))
    
        def "has useful string representation"() {
            expect:
            executable.toString() == "native executable 'someExe'"
            executable.displayName == "native executable 'someExe'"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/os/executable_test.go

    	"fmt"
    	"os"
    )
    
    func main() {
    	before, err := os.Executable()
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to read executable name before deletion: %v\n", err)
    		os.Exit(1)
    	}
    
    	err = os.Remove(before)
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "failed to remove executable: %v\n", err)
    		os.Exit(1)
    	}
    
    	after, err := os.Executable()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/PropertyChanges.java

        private final String title;
        private final Describable executable;
    
        public PropertyChanges(
            ImmutableSortedSet<String> previous,
            ImmutableSortedSet<String> current,
            String title,
            Describable executable
        ) {
            this.previous = previous;
            this.current = current;
            this.title = title;
            this.executable = executable;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        snapshot_ptrs.emplace(p.first,
                              p.second.has_value() ? &p.second.value() : nullptr);
      }
    
      const xla::HloInputOutputAliasConfig& input_output_alias =
          executable->executable()->module().input_output_alias_config();
      absl::StatusOr<std::vector<xla::ExecutionInput>> execution_inputs =
          launch_context.PopulateInputs(ctx, result, snapshot_ptrs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScriptExecuter.groovy

            if (OperatingSystem.current().isWindows()) {
                def theArgs = ['/d', '/c', executable.replace('/', File.separator)] + getArgs()
                setArgs(theArgs) //split purposefully to avoid weird windows CI issue
                executable = 'cmd.exe'
            } else {
                executable = "${workingDir}/${executable}"
            }
            builder.environment("JAVA_HOME", System.getProperty("java.home"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccToolChainTest.groovy

                assert platformToolChain.assembler.executable == 'gcc'
                assert platformToolChain.cCompiler.executable == 'gcc'
                assert platformToolChain.cppCompiler.executable == 'g++'
                assert platformToolChain.objcCompiler.executable == 'gcc'
                assert platformToolChain.objcppCompiler.executable == 'g++'
                assert platformToolChain.linker.executable == 'g++'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            static library file: build/libs/hello/static/libhello.a
    
    Native executable 'main'
    ------------------------
    
    Source sets
        C++ source 'main:cpp'
            srcDir: src/main/cpp
    
    Binaries
        Executable 'main:executable'
            build using task: :mainExecutable
            install using task: :installMainExecutable
            build type: build type 'debug'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

            public File executable;
    
            @Override
            public CompilerExecSpec environment(String key, String value) {
                environments.put(key, value);
                return this;
            }
    
            @Override
            public CompilerExecSpec executable(File executable) {
                this.executable = executable;
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. src/os/exec/dot_test.go

    		// independent executable that happens to have the same name as an
    		// executable in ".". If "." is included implicitly, looking up the
    		// (unqualified) executable name will return ErrDot; otherwise, the
    		// executable in "." should have no effect and the lookup should
    		// unambiguously resolve to the directory in PATH.
    
    		dir := t.TempDir()
    		executable := "execabs-test"
    		if runtime.GOOS == "windows" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:19:21 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top