Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for contentRoot (1.58 sec)

  1. platforms/documentation/docs/src/docs/kotlin/styles/gradle.css

        height: 65px;
        top: -27px;
        left: -72px;
    }
    
    .library-name a span::before {
        content: 'Kotlin DSL Reference for ';
    }
    
    /* Hide the module name title on the front page */
    
    div.main-content:not([data-page-type]) h1.cover {
        display: none;
    }
    
    /* Capitalize the module name */
    
    div.library-name,
    div.sideMenuPart div.overview:first-child a[href="index.html"],
    div.breadcrumbs a:first-child {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/EarWebModule.java

    public interface EarWebModule extends EarModule {
    
        /**
         * The context-root element specifies the context root of a web application.
         */
        String getContextRoot();
    
        void setContextRoot(String contextRoot);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 991 bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/DeploymentDescriptor.java

         *
         * @param path
         *            The path of the module to add.
         * @param contextRoot
         *            The context root type of the web module.
         * @return this.
         */
        DeploymentDescriptor webModule(String path, String contextRoot);
    
        /**
         * List of security roles. Optional. Non-null and order-maintaining by default.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

            assert d.libraryDirectory == "APP-INF/lib"
            assert d.modules.size() == 2
            assert d.modules[0].path == "my.jar"
            assert d.modules[1].path == "my.war"
            assert d.modules[1].contextRoot == "/"
            assert d.moduleTypeMappings["my.jar"] == "java"
            assert d.moduleTypeMappings["my.war"] == "web"
            assert d.securityRoles.size() == 2
            assert d.securityRoles[0].roleName == "admin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

                    modules.each {
                        it.compilerOutput.inheritOutputDirs
                        it.compilerOutput.outputDir
                        it.compilerOutput.testOutputDir
                        it.contentRoots.each {
                            it.excludeDirectories
                            withIdeaSources(it.sourceDirectories.findAll { it.generated })
                            withIdeaSources(it.testDirectories.findAll { it.generated })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top