Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for installDist (0.21 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-task-graph.dot

      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
      node [style=filled, fillcolor="#cfe2f3"]
      rankdir=LR
    
      compileTestCpp -> linkTest -> installTest -> runTest -> test -> check -> build [dir=back]
      compileDebugCpp -> linkTest [dir=back]
      assemble -> build [dir=back]
      tripleDots -> assemble [dir=back]
      clean
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPluginTest.groovy

            link.linkedFile.get().asFile == projectDir.file("build/exe/test/" + OperatingSystem.current().getExecutableName("someAppTest"))
            link.debuggable
    
            def install = project.tasks.installTest
            install instanceof InstallExecutable
            install.installDirectory.get().asFile == project.file("build/install/test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithoutComponentIntegrationTest.groovy

        }
    
        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	// 0 means no limit.
    	MaxRequestBodyBytes int64
    }
    
    // InstallREST registers the REST handlers (storage, watch, proxy and redirect) into a restful Container.
    // It is expected that the provided path root prefix will serve all operations. Root MUST NOT end
    // in a slash.
    func (g *APIGroupVersion) InstallREST(container *restful.Container) ([]apidiscoveryv2.APIResourceDiscovery, []*storageversion.ResourceInfo, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-variant-task-graph.dot

      compileTestVariantCpp[label=<compile<i>Variant</i>Cpp>]
      linkTestVariant[label=<link<i>Variant</i>>]
      installTestVariant[label=<installTest<i>Variant</i>>]
      runTestVariant[label=<runTest<i>Variant</i>>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/xctest-variant-task-graph.dot

      compileTestVariantSwift[label=<compile<i>Variant</i>Swift>]
      linkTestVariant[label=<link<i>Variant</i>>]
      installTestVariant[label=<installTest<i>Variant</i>>]
      xcTestVariant[label=<xcTest<i>Variant</i>>]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/CppUnitTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

        @Override
        protected List<String> getTasksToAssembleDevelopmentBinary(String variant) {
            return [":compileDebug${variant.capitalize()}Cpp", ":compileTest${variant.capitalize()}Cpp", ":linkTest${variant.capitalize()}", ":installTest${variant.capitalize()}", ":runTest${variant.capitalize()}"]
        }
    
        @Override
        String getTestedComponentDsl() {
            return "library"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

            then:
            def startScriptsTask = project.tasks[ApplicationPlugin.TASK_START_SCRIPTS_NAME]
            startScriptsTask.applicationName == 'SuperApp'
    
            def installTest = project.tasks[DistributionPlugin.TASK_INSTALL_NAME]
            installTest.destinationDir == project.file("build/install/SuperApp")
    
            def distZipTask = project.tasks[ApplicationPlugin.TASK_DIST_ZIP_NAME]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestDependenciesIntegrationTest.groovy

    """
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "unitTest"
        }
    
        @Override
        protected String getAssembleDevBinaryTask() {
            return ":installTest"
        }
    
        @Override
        protected List<String> getAssembleDevBinaryTasks() {
            return [":compileTestCpp", ":linkTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    The `build` task compiles the ${language.raw} sources, links the object files, and runs the tests.
    It also packages the main and test applications for distribution on other systems.
    The `installDebug` and `installTest` tasks, which both run as part of `build`, copy the executable and generates a shell script for executing the application.
    The following shows the content of the `build/install` folder:
    
    [listing.terminal.sample-command]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top