Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for groovyDsl (0.47 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            }
        }
    
        /**
         * The bootstrap method for method calls from Groovy compiled code with indy enabled.
         * Gradle's bytecode processor replaces the Groovy's original {@link IndyInterface#bootstrap(MethodHandles.Lookup, String, MethodType, String, int)}
         * with this method to intercept potentially "interesting" calls and do some additional work.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            where:
            dsl << ['groovy', 'kotlin']
        }
    
        /**
         * Loads the JUnit XML test results file for the given, named test case. It
         * assumes the file path to that file and loads it using Groovy's XmlSlurper
         * which can then be used to extract information from the XML.
         */
        private static getTestResultsFileAsXml(TestFile sampleDir, String testClassName, String taskName = "test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/descriptor/internal/DefaultDeploymentDescriptor.java

                XmlParser parser = new XmlParser(false, true, true);
                try {
                    // If not set for >= JAXP 1.5 / Java8 won't allow referencing DTDs, e.g.
                    // using http URLs, because Groovy's XmlParser requests FEATURE_SECURE_PROCESSING
                    parser.setProperty(ACCESS_EXTERNAL_DTD, ALLOW_ANY_EXTERNAL_DTD);
                } catch (SAXNotRecognizedException ignore) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 19 22:06:51 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

     * <p>
     * The default implementations used by this task use <a href="https://docs.groovy-lang.org/latest/html/documentation/template-engines.html#_simpletemplateengine">Groovy's SimpleTemplateEngine</a>
     * to parse the template, with the following variables available:
     *
     * <ul>
     * <li>{@code applicationName}</li>
     * <li>{@code optsEnvironmentVar}</li>
     * <li>{@code exitEnvironmentVar}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Set;
    
    /**
     * <p>Generates HTML API documentation for Groovy source, and optionally, Java source.
     *
     * <p>This task uses Groovy's Groovydoc tool to generate the API documentation. Please note
     * that the Groovydoc tool has some limitations at the moment. The version of the Groovydoc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    In case you want to avoid the generation of a subgroup accessor, we recommend relying on case to differentiate.
    For example the aliases `groovyCore`, `groovyJson` and `groovyXml` would be mapped to the `libs.groovyCore`, `libs.groovyJson` and `libs.groovyXml` accessors respectively.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    ====
    
    [[sec:idea_modify_xml]]
    ==== Modifying the XML representation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    ====
    
    [[sec:eclipse_modify_xml]]
    ==== Modifying the XML representation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/resolve/scenarios/VersionRangeResolveTestScenarios.groovy

                        idx = 0
                    }
                    currentBatch = nextBatch.batchName
                    return next()
                }
    
                // an alternative to Groovy's permutations method which is reproducible
                private static List<List<RenderableVersion>> permutations(Batch nextBatch) {
                    def generator = new PermutationGenerator<>(nextBatch.versions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    [[sec:ant_properties]]
    == Using Ant properties and references
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top