Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for donparam (0.05 seconds)

  1. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithMethods.groovy

         */
        public final CombinedInterface refTypeMethod(JavaInterface someThing, boolean aFlag) {
            null
        }
    
        /**
         * A method that returns a default type.
         */
        def defMethod(def defParam) {
            null
        }
    
        /**
         * A method that returns an array
         */
        String[][] arrayMethod(String[]... strings) {
            null
        }
    
        /**
         * A String property.
         */
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 952 bytes
    - Click Count (0)
  2. .golangci.yml

    version: "2"
    
    linters:
      default: standard
      enable:
        - cyclop
        - gocritic
        - gosec
        - ineffassign
        - misspell
        - prealloc
        - unconvert
        - unparam
        - whitespace
    
    formatters:
      enable:
        - gofumpt
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Thu Apr 17 03:55:13 GMT 2025
    - 241 bytes
    - Click Count (0)
Back to Top