Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,359 for Executable (0.31 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaInfo.java

        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavaExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
         * @throws JavaHomeException when executable cannot be found
         */
        File getJavacExecutable() throws JavaHomeException;
    
        /**
         * @return the executable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                }
            """
    
            when:
            run "mainExecutable"
    
            then:
            def executable = executable("build/exe/main/main")
            executable.exec().out == "Hello!"
        }
    
        @ToBeFixedForConfigurationCache
        def "can build debug binaries for a C++ executable"() {
            given:
            buildFile << """
    apply plugin: "cpp"
    
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_executable_persistor.h

      *serialized_entry.mutable_hlo_module() = hlo_module;
    
      // XLA compiler supports exporting executables as an AOT compilation result
      // to avoid running potentially expensive compilation pipeline twice.
      // Check if XLA compiler can export available executable.
      if (auto serialized_executable =
              compiler_client->SerializeExecutable(executable);
          serialized_executable.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def executable = Stub(ConfigurableComponentWithExecutable)
            executable.name >> "windowsDebug"
            executable.names >> Names.of("windowsDebug")
            executable.nativePlatform >> Stub(NativePlatformInternal)
            executable.toolChain >> Stub(NativeToolChainInternal)
            executable.platformToolProvider >> toolProvider
            executable.baseName >> Providers.of("test_app")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            this.executable = objectFactory.fileProperty();
            this.installedExecutable.set(getLibDirectory().map(directory -> directory.file(executable.getAsFile().get().getName())));
            // A further work around for missing ability to skip task when input file is missing (see #getInputFileIfExists below)
            getInputs().file(executable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                    task.getExecutableFile().set(executable.getExecutableFile());
                    task.lib(executable.getRuntimeLibraries());
                });
    
                executable.getInstallTask().set(install);
                executable.getInstallDirectory().set(install.flatMap(task -> task.getInstallDirectory()));
                executable.getOutputs().from(executable.getInstallDirectory());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

        private static ChangeContainer errorHandling(Describable executable, ChangeContainer wrapped) {
            return new ErrorHandlingChangeContainer(executable, wrapped);
        }
    
        private static InputFileChanges errorHandling(Describable executable, InputFileChanges wrapped) {
            ErrorHandlingChangeContainer errorHandlingChangeContainer = new ErrorHandlingChangeContainer(executable, wrapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/clean_binary.txt

    # Build something to create the executable, including several cases
    [short] skip
    
    # --------------------- clean executables -------------------------
    
    # case1: test file-named executable 'main'
    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/toolingApi/customModel/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: sample-build
        executable: gradle
        args: tasks
    },{
        execution-subdirectory: tooling
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactory.java

            private final File executable;
    
            private DefaultCommandLineGroovyJavaJointCompileSpec(File executable) {
                this.executable = executable;
            }
    
            @Override
            public File getExecutable() {
                return executable;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top