Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,359 for Executable (0.13 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

        }
    
        def "adds link and install task for executable"() {
            def executable = Stub(DefaultSwiftExecutable)
            def executableFile = project.objects.fileProperty()
            executable.name >> name
            executable.names >> Names.of(name)
            executable.module >> Providers.of("TestApp")
            executable.baseName >> Providers.of("test_app")
            executable.executableFile >> executableFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingBaseExecSpec.java

        }
    
        @Override
        default void setExecutable(String executable) {
            getDelegate().setExecutable(executable);
        }
    
        @Override
        default void setExecutable(Object executable) {
            getDelegate().setExecutable(executable);
        }
    
        @Override
        default ProcessForkOptions executable(Object executable) {
            getDelegate().executable(executable);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            then:
            executedAndNotSkipped ":main${NativePlatformsTestFixture.defaultPlatformName.capitalize()}Executable"
            notExecuted ":mainUnknownExecutable"
    
            and:
            executable("build/exe/main/${NativePlatformsTestFixture.defaultPlatformName}/main").assertExists()
            executable("build/exe/main/unknown/main").assertDoesNotExist()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

        }
    
        def "can build debug and release variant of the executable"() {
            given:
            def app = new SwiftAppWithOptionalFeature()
            def debugBinary = executable("build/exe/main/debug/App")
            def releaseBinary = executable("build/exe/main/release/App")
            settingsFile << "rootProject.name = 'app'"
            app.writeToProject(testDirectory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskForkOptions.java

        private final File workingDir;
        private final String executable;
        private final int javaMajorVersion;
        private final Iterable<File> classpath;
        private final Iterable<File> modulePath;
        private final List<String> jvmArgs;
        private final Map<String, String> environment;
    
        DefaultTestTaskForkOptions(
            File workingDir,
            String executable,
            int javaMajorVersion,
            Iterable<File> classpath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSettings.java

     */
    public class GnupgSettings {
    
        private String executable;
        private File homeDir;
        private File optionsFile;
        private String keyName;
        private String passphrase;
        private boolean useLegacyGpg;
    
        public void setExecutable(String executable) {
            this.executable = executable;
        }
    
        public String getExecutable() {
            if (executable == null) {
                return defaultExecutable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitComponentReportIntegrationTest.groovy

            flavor: flavor 'default'
            target platform: platform '$currentNative'
            component under test: native executable 'someExe'
            binary under test: executable 'someExe:executable'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExeTest/someExeTest
    """
        }
    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. tensorflow/compiler/jit/get_compiler_ir.cc

        case IrExportStage::OPTIMIZED_HLO:
        case IrExportStage::OPTIMIZED_HLO_SERIALIZED: {
          TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::LocalExecutable> executable,
                              BuildExecutable(local_client, result, options));
          xla::Executable* new_executable = executable->executable();
          if (stage == IrExportStage::OPTIMIZED_HLO_SERIALIZED) {
            return new_executable->module().ToProto().SerializeAsString();
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildStaleOutputsIntegrationTest.groovy

                }
    """
            app.library.writeToProject(file("greeter"))
            app.executable.writeToProject(file("app"))
    
            when:
            succeeds "assemble"
    
            then:
            executable("app/build/exe/main/debug/app").assertExists()
            file("app/build/obj/main/debug").assertHasDescendants(expectIntermediateDescendants(app.executable.original))
            installation("app/build/install/main/debug").assertInstalled()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCommandLineToolConfiguration.java

    
    import org.gradle.api.Incubating;
    
    /**
     * An executable tool used for GCC that allows customizing the executable.
     */
    @Incubating
    public interface GccCommandLineToolConfiguration extends CommandLineToolConfiguration {
        /**
         * The name of the executable file for this tool.
         */
        String getExecutable();
    
        /**
         * Set the name of the executable file for this tool.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top