Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,359 for Executable (0.19 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/DefaultGccCommandLineToolConfiguration.java

        private String executable;
    
        public DefaultGccCommandLineToolConfiguration(ToolType toolType, String defaultExecutable) {
            super(toolType);
            this.executable = defaultExecutable;
        }
    
        @Override
        public String getExecutable() {
            return executable;
        }
    
        @Override
        public void setExecutable(String file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorker.java

        private final String name;
        private final File executable;
        private final ExecActionFactory execActionFactory;
    
        public DefaultCommandLineToolInvocationWorker(String name, File executable, ExecActionFactory execActionFactory) {
            this.name = name;
            this.executable = executable;
            this.execActionFactory = execActionFactory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/tests/exclude-transitive-for-dependency.sample.conf

    commands: [{
        executable: gradle
        args: -Psample1 compileJava printArtifacts
        flags: --quiet
        expected-output-file: sample1.out
    },{
        executable: gradle
        args: -Psample2 compileJava printArtifacts
        flags: --quiet
        expected-output-file: sample2.out
    },{
         executable: gradle
         args: -Psample3 compileJava printArtifacts
         flags: --quiet
         expected-output-file: sample3.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/kernels/xla_ops.cc

      if (run_synchronous) {
        execution_output =
            executable->Run(std::move(execution_inputs), run_options);
      } else {
        execution_output =
            executable->RunAsync(std::move(execution_inputs), run_options);
      }
    
      auto elapsed = env->NowMicros() - start_time;
      VLOG(2) << "Elapsed time for Xla Executable Run: " << elapsed << "us";
      return execution_output;
    }
    
    absl::StatusOr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/configurationCacheProblemsFixedReuse.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: load.out
      allow-additional-output: true
    }, {
       executable: gradle
       args: "--rerun-tasks someTask -DsomeDestination=another"
       expected-output-file: load-another.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/configurationCacheProblemsFixed.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expected-output-file: load.out
      allow-additional-output: true
    }, {
       executable: gradle
       args: "--rerun-tasks someTask -DsomeDestination=another"
       expected-output-file: store-another.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 470 bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecFactoryTest.groovy

    class DefaultJavaCompileSpecFactoryTest extends Specification {
    
        def "produces correct spec with fork=#fork, executable=#executable, toolchain=#toolchain"() {
            CompileOptions options = TestUtil.newInstance(CompileOptions, TestUtil.objectFactory())
            options.fork = fork
            options.forkOptions.executable = executable ? Jvm.current().javacExecutable.absolutePath : null
    
            def javaToolchain = null
            if (toolchain != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/configurationCacheProblemsKotlin.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/configurationCacheProblemsGroovy.sample.conf

    commands: [{
      executable: gradle
      args: "--rerun-tasks someTask -DsomeDestination=dest"
      expect-failure: true
      expected-output-file: fail.out
      allow-additional-output: true
      allow-disordered-output: true
    },{
      executable: gradle
      args: "--rerun-tasks --configuration-cache-problems=warn someTask -DsomeDestination=dest"
      expect-failure: false
      expected-output-file: store.out
      allow-additional-output: true
    }, {
      executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 627 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskNoChange.sample.conf

    # tag::cli[]
    # gradle --quiet incrementalReverse
    # end::cli[]
    
    commands: [{
        executable: gradle
        args: originalInputs incrementalReverse
        flags: --quiet
    }, {
        executable: gradle
        args: incrementalReverse
        expected-output-file: incrementalTaskNoChange.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 276 bytes
    - Viewed (0)
Back to top