Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,359 for Executable (0.28 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: admin-feature
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: aggregation
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: android-app
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: build-logic
        executable: gradle
        args: tasks -q
    },{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 835 bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                }
                test {
                    executable = new File(".").getCanonicalFile().toPath().relativize(new File("${executable}").toPath()).toString()
                }
            """
            when:
            executer.expectDocumentedDeprecationWarning("Configuring a Java executable via a relative path. " +
                "This behavior has been deprecated. This will fail with an error in Gradle 9.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

                    assembler.executable = 'does-not-exist'
                    cCompiler.executable = 'does-not-exist'
                    cppCompiler.executable = 'does-not-exist'
                    linker.executable = 'does-not-exist'
                    staticLibArchiver.executable = 'does-not-exist'
                    objcCompiler.executable = 'does-not-exist'
                    objcppCompiler.executable = 'does-not-exist'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/DefaultProcessForkOptions.java

            this.executable = executable;
        }
    
        @Override
        public void setExecutable(Object executable) {
            this.executable = executable;
        }
    
        @Override
        public ProcessForkOptions executable(Object executable) {
            setExecutable(executable);
            return this;
        }
    
        @Override
        public File getWorkingDir() {
            if (workingDir == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
      VLOG(2) << "Compiled PJRT executable " << executable->name()
              << " num_replicas " << executable->num_replicas()
              << " num_partitions " << executable->num_partitions();
    
      return std::move(executable);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

            when:
            run "mainExecutable"
    
            then:
            def mainExecutable = executable("build/exe/main/main")
            mainExecutable.assertExists()
            mainExecutable.exec().out == helloWorldApp.englishOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "build executable with custom compiler arg"() {
            given:
            buildFile << """
                model {
                    components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/ClangToolChainTest.groovy

                assert platformToolChain.assembler.executable == 'clang'
                assert platformToolChain.cCompiler.executable == 'clang'
                assert platformToolChain.cppCompiler.executable == 'clang++'
                assert platformToolChain.objcCompiler.executable == 'clang'
                assert platformToolChain.objcppCompiler.executable == 'clang++'
                assert platformToolChain.linker.executable == 'clang++'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ErrorHandlingChangeContainer.java

    import org.gradle.api.GradleException;
    
    public class ErrorHandlingChangeContainer implements ChangeContainer {
        private final Describable executable;
        private final ChangeContainer delegate;
    
        public ErrorHandlingChangeContainer(Describable executable, ChangeContainer delegate) {
            this.executable = executable;
            this.delegate = delegate;
        }
    
        @Override
        public boolean accept(ChangeVisitor visitor) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks_linux.go

    	checks = append(checks,
    		InPathCheck{executable: "crictl", mandatory: false, exec: execer},
    		InPathCheck{executable: "conntrack", mandatory: true, exec: execer},
    		InPathCheck{executable: "ip", mandatory: true, exec: execer},
    		InPathCheck{executable: "iptables", mandatory: true, exec: execer},
    		InPathCheck{executable: "mount", mandatory: true, exec: execer},
    		InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util_test.cc

      const XlaCompiler::CompilationResult* result;
      xla::PjRtLoadedExecutable* executable;
      CompileToExecutable(args, &result, &executable);
    
      std::vector<const Tensor*> inputs;
      inputs.push_back(a);
      inputs.push_back(b);
      TF_ASSERT_OK_AND_ASSIGN(auto execute_outputs,
                              RunExecutable(inputs, {}, result, executable));
    
      TF_EXPECT_OK(PopulateCtxOutputsFromPjRtExecutableOutputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top