Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for fountain (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassDoc.groovy

            if (!table) {
                throw new RuntimeException("Section '$title' does not contain a <table> element.")
            }
            if (!table.thead[0]) {
                throw new RuntimeException("Table '$title' does not contain a <thead> element.")
            }
            if (!table.thead[0].tr[0]) {
                throw new RuntimeException("Table '$title' does not contain a <thead>/<tr> element.")
            }
            return table
        }
    
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/util/RerunFlakyTest.kt

                display = ParameterDisplay.PROMPT,
                allowEmpty = false,
                description = "The name of the test to run, as should be passed to --tests. Can't contain spaces since there are problems with Teamcity's escaping, you can use * instead."
            )
            text(
                testJvmVersionParameter,
                JvmVersion.java11.major.toString(),
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                        line + getAgentOptions("\$APP_HOME").joinToString(separator = " ", prefix = "\" ", postfix = "\"") {
                            // Wrap the agent switch in double quotes, as the expanded APP_HOME may contain spaces.
                            // The joined line is enclosed in double quotes too, so double quotes here must be escaped.
                            "\\\"$it\\\""
                        }
                    }
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

            fun describe(thing: String, desc: String) =
                if (thing == "Field") desc else "com.example.$desc"
        }
    
        fun BuildResult.assertOutputContains(text: String) =
            assertTrue("Output should contain text:\n'$text',\nbut given text was not matched.\n", output.contains(text))
    
        protected
        fun File.withFile(path: String, text: String = ""): File =
            resolve(path).apply {
                parentFile.mkdirs()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 16.4K bytes
    - Viewed (0)
  5. .teamcity/.mvn/wrapper/MavenWrapperDownloader.java

            + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
    
        /**
         * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
         * use instead of the default one.
         */
        private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
                ".mvn/wrapper/maven-wrapper.properties";
    
        /**
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 4.8K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

     * <li>{@code sourceFile} - A main docbook template file containing the introductory material and a list of classes to document.</li>
     * <li>{@code classDocbookDir} - A directory that should contain docbook template for each class referenced in main docbook template.</li>
     * </ul>
     *
     * Produces the following:
     * <ul>
     * <li>A docbook book XML file containing the reference.</li>
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                    }
    
                    function appendErrorCorrections(reason) {
                        var result = JSON.parse('${currentApiChanges.replace('\n', '')}'); // JSON string from report uses double quotes, contain it within single quotes
                        getAllErrorCorrections().forEach((correction) => {
                            correction.acceptation = reason;
                            result.acceptedApiChanges.push(correction);
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

    import gradlebuild.basics.transforms.Minify
    
    /**
     * A map from artifact name to a set of class name prefixes that should be kept.
     * Artifacts matched by this map will be minified to only contain the specified
     * classes and the classes they depend on. The classes are not relocated, they all
     * remain in their original namespace. This reduces the final Gradle distribution
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  9. .cm/plugins/filters/byCodeowner/ignore/index.js

            function startingReplacer () {
                // If has a slash `/` at the beginning or middle
                return !/\/(?!$)/.test(this)
                    // > Prior to 2.22.1
                    // > If the pattern does not contain a slash /,
                    // >   Git treats it as a shell glob pattern
                    // Actually, if there is only a trailing slash,
                    //   git also treats it as a shell glob pattern
    
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java

                if (propertyDoc.getDescription() == null) {
                    throw new RuntimeException(String.format("Docbook content for '%s.%s' does not contain a description paragraph.", classDoc.getName(), propName));
                }
    
                props.put(propName, propertyDoc);
            }
    
            for (PropertyDoc propertyDoc : props.values()) {
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.2K bytes
    - Viewed (0)
Back to top