Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Cook (0.14 sec)

  1. README.md

    * [Upcoming trainings](https://gradle.org/training/)
    * Ask on the [forum](https://discuss.gradle.org/) or [StackOverflow](https://stackoverflow.com/questions/tagged/gradle)
    * Have a look at the [Samples](https://docs.gradle.org/current/samples/index.html)
    * Checkout the [Community Resources](https://gradle.org/resources/) as well
    * Join our [Slack Channel](https://gradle.com/slack-invite)
    
    
    ## Contributing
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Mar 24 20:49:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <module name="IllegalImport">
                <!--
                    We shouldn't use jdk.internal types.
                    
                    com.beust and org.testng.collections has classes that look like Guava.
    
                    We prefer to import javax.annotation and fully-qualify references to org.jetbrains.annotations.
                -->
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 16 22:05:16 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaDataTest.groovy

    class ClassLinkMetaDataTest extends Specification {
    
        public static final String SIMPLE_CLASSNAME = 'MyClass'
        public static final String METHOD_NAME = 'calculate'
    
        def "can define and look up overloaded methods"() {
            given:
            ClassMetaData classMetaData = new ClassMetaData("org.gradle.$SIMPLE_CLASSNAME")
            classMetaData.addMethod(METHOD_NAME, TypeMetaData.VOID, null)
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.7K bytes
    - Viewed (0)
Back to top