Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for containers (0.2 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            }
        }
    
        private void wrapContentInContainer(Document document) {
            // Wrap the page in a text container to get the margins
            Elements bodyContent = document.body().children().remove();
            document.body().prepend("<div class='container'/>");
            document.body().children().get(0).html(bodyContent.outerHtml());
        }
    
        private void addTOC(Document document) {
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 26 13:00:32 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  2. .cm/plugins/filters/categorize/index.js

    /**
     * @module categorize
     * @description Returns a mapping of platforms to the information about the files involved in the PR contained in each platform
     * @param {Map} fileOwners mapping of platform name to a list of files involved in the change located in that platform
     * @param {[FileMetadata]} fileMetadatas - gitStream's list of metadata about file changes in the PR including path
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

        validations:
          required: false
      - type: textarea
        id: steps-to-reproduce
        attributes:
          label: Steps to Reproduce
          description: |
            Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive.
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                    assertFalse(functionalTests[0].getGradleParams().contains("-PincludeTestClasses"))
                    assertFalse(functionalTests[0].getGradleParams().contains("-PexcludeTestClasses"))
                } else {
                    functionalTests.forEachIndexed { index, it ->
                        if (index == functionalTests.size - 1) {
                            assertTrue(it.getGradleParams().contains("-PexcludeTestClasses"))
                        } else {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt

            val path = subproject["path"] as String
            val unitTests = !ignoredSubprojects.contains(name) && subproject["unitTests"] as Boolean
            val functionalTests = !ignoredSubprojects.contains(name) && subproject["functionalTests"] as Boolean
            val crossVersionTests = !ignoredSubprojects.contains(name) && subproject["crossVersionTests"] as Boolean
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jun 02 14:55:06 GMT 2023
    - 2.2K bytes
    - Viewed (1)
  6. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

            .flatMap { listOf(":distributions-full:$it", "distributions-full:$it", it) }
            .any(gradle.startParameter.taskNames::contains)
    
    fun isRunningDocsTestTask() =
        setOf(":docs:docsTest", "docs:docsTest")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ClassMetaDataUtil.java

                        // Ignore inner classes
                        return;
                    }
                    String packageName = classMetaData.getPackageName();
                    if (excludedPackages.contains(packageName)) {
                        return;
                    }
                    for (String excludedPrefix : excludedPrefixes) {
                        if (packageName.startsWith(excludedPrefix)) {
                            return;
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/LinkRenderer.java

                Element linkElement = document.createElement("apilink");
                linkElement.setAttribute("class", className);
                return linkElement;
            }
    
            if (primitiveTypes.contains(className)) {
                Element classNameElement = document.createElement("classname");
                classNameElement.appendChild(document.createTextNode(className));
                return classNameElement;
            }
    
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/JavadocConverterTest.groovy

            _ * classMetaData.rawCommentText >> '''
     * x
     *   indented
    '''
            when:
            def result = parser.parse(classMetaData, listener)
    
            then:
            format(result.docbook).contains('x\n  indented')
        }
    
        def removesLeadingAsterixFromEachLine() {
            _ * classMetaData.rawCommentText >> ''' * line 1
     * line 2
    '''
            when:
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 14.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/AbstractLanguageElement.java

        }
    
        @Override
        public boolean isDeprecated() {
            return annotationNames.contains(Deprecated.class.getName());
        }
    
        @Override
        public boolean isIncubating() {
            return annotationNames.contains("org.gradle.api.Incubating");
        }
    
        public boolean isReplaced() {
            return annotationNames.contains("org.gradle.api.model.ReplacedBy");
        }
    
        public String getReplacement() {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.9K bytes
    - Viewed (0)
Back to top