Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for installDirectory (0.39 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestBinary.java

     */
    public abstract class DefaultSwiftXCTestBinary extends DefaultSwiftBinary implements SwiftXCTestBinary {
        private final RegularFileProperty executableFile;
        private final DirectoryProperty installDirectory;
        private final RegularFileProperty runScriptFile;
        private final Property<XCTest> runTaskProperty;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

    public abstract class InstallXCTestBundle extends DefaultTask {
        private final DirectoryProperty installDirectory;
        private final RegularFileProperty bundleBinaryFile;
    
        public InstallXCTestBundle() {
            ObjectFactory objectFactory = getProject().getObjects();
            installDirectory = objectFactory.directoryProperty();
            bundleBinaryFile = objectFactory.fileProperty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. build-logic/packaging/src/main/kotlin/gradlebuild.install.gradle.kts

    import gradlebuild.packaging.GradleDistributionSpecs.allDistributionSpec
    
    val installDirectory = repoRoot().dir(gradleInstallPath).map { validateInstallDir(it) }
    
    tasks.register<Sync>("install") {
        description = "Installs the minimal distribution"
        group = "build"
        with(binDistributionSpec())
        into(installDirectory)
    }
    
    tasks.register<Sync>("installAll") {
        description = "Installs the full distribution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 07:17:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

    public abstract class InstallExecutable extends DefaultTask {
        private final Property<NativePlatform> targetPlatform;
        private final Property<NativeToolChain> toolChain;
        private final DirectoryProperty installDirectory;
        private final RegularFileProperty executable;
        private final RegularFileProperty installedExecutable;
        private final ConfigurableFileCollection libs;
        private final WorkerLeaseService workerLeaseService;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

            linkDebug.debuggable
    
            def installDebug = project.tasks.installDebug
            installDebug instanceof InstallExecutable
            installDebug.installDirectory.get().asFile == projectDir.file("build/install/main/debug")
            installDebug.runScriptFile.get().getAsFile().name == OperatingSystem.current().getScriptName("TestApp")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftExecutable.java

        private final RegularFileProperty executableFile;
        private final Property<Task> executableFileProducer;
        private final DirectoryProperty installDirectory;
        private final Property<Configuration> runtimeElementsProperty;
        private final Property<LinkExecutable> linkTaskProperty;
        private final Property<InstallExecutable> installTaskProperty;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

            linkDebug.debuggable
    
            def installDebug = project.tasks.installDebug
            installDebug instanceof InstallExecutable
            installDebug.installDirectory.get().asFile == projectDir.file("build/install/main/debug")
            installDebug.runScriptFile.get().getAsFile().name == OperatingSystem.current().getScriptName("testApp")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

            link.debuggable
    
            def install = project.tasks.installTest
            install instanceof InstallXCTestBundle
            install.installDirectory.get().asFile == project.file("build/install/test")
            install.runScriptFile.get().asFile.name == OperatingSystem.current().getScriptName("TestAppTest")
    
            def test = project.tasks.xcTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.tasks.InstallExecutable.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>installDirectory</td>
                </tr>
                <tr>
                    <td>executableFile</td>
                </tr>
                <tr>
                    <td>runScriptFile</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            executable.executableFileProducer >> exeFileTaskProp
            executable.debuggerExecutableFile >> debugExeFileProp
            executable.linkTask >> linkTaskProp
            executable.installDirectory >> installDirProp
            executable.installTask >> installTaskProp
    
            given:
            project.pluginManager.apply(NativeBasePlugin)
            project.components.add(executable)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top