Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,359 for Executable (0.14 sec)

  1. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/toolchainFiltersWithoutCC.sample.conf

    commands:[{
        executable: gradle
        args: "build -DtestToolchain=knownVendor"
    }, {
        executable: gradle
        args: "build -DtestToolchain=matchingVendor"
        expect-failure: true  # The matching vendor uses a dummy vendor string that is never matched
        expected-output-file: matchingVendorWithoutCC.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 346 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/declaring-capabilities.sample.conf

    commands: [{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j"
        flags: "--quiet"
        expected-output-file: dependencyReport.out
        expect-failure: false
    },{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j -Preplace"
        flags: "--quiet"
        expected-output-file: dependencyReportReplaced.out
        expect-failure: false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractExecTask.java

        public void setExecutable(@Nullable String executable) {
            execSpec.setExecutable(executable);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public void setExecutable(Object executable) {
            execSpec.setExecutable(executable);
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public T executable(Object executable) {
            execSpec.executable(executable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 08 18:31:36 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeExecutableFileSpec.java

            this.file = file;
        }
    
        /**
         * The Tool Chain that produces the native executable.
         * @since 4.7
         */
        public NativeToolChain getToolChain() {
            return toolChain;
        }
    
        /**
         * Sets the Tool Chain that produces the native executable.
         * @since 4.7
         */
        public void setToolChain(NativeToolChain toolChain) {
            this.toolChain = toolChain;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can compile but not link when executable depends on api of library required for linking"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
            buildFile << """
    model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. src/os/exec/lp_plan9.go

    var ErrNotFound = errors.New("executable file not found in $path")
    
    func findExecutable(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	if m := d.Mode(); !m.IsDir() && m&0111 != 0 {
    		return nil
    	}
    	return fs.ErrPermission
    }
    
    // LookPath searches for an executable named file in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    │           └── app  // <2>
    └── test
        ├── appTest      // <1>
        └── lib
            └── appTest  // <3>
    ----
    <1> The script for executing the application variant
    <2> The main executable binary (debug variant)
    <3> The test executable binary
    
    NOTE: When a build has dependencies, the dependent libraries are also copied into the installation folder.
    The shell scripts properly configure the library path so the package can be relocated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompilerFactoryTest.groovy

            private final File executable;
    
            private TestCommandLineJavaSpec(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
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_device_compiler_client.h

          const XlaCompiler::CompilationResult& result) override;
    
      // Returns a platform-specific serialization of `executable`. The
      // serialization is not guaranteed to be stable over time. `executable` must
      // have been produced by this client.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::PjRtLoadedExecutable& executable) override;
    
      // PjRt doesn't support AOT compilation yet. Builds a PjRtLoadedExecutable and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/os/exec/lp_unix.go

    import (
    	"errors"
    	"internal/syscall/unix"
    	"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 findExecutable(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	m := d.Mode()
    	if m.IsDir() {
    		return syscall.EISDIR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top