Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Wildcard (0.19 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        override fun visitTypeArgument() {
            typeArguments.add(TypeSignatureVisitor(asmLevel).also { it.binaryName = "?" })
        }
    
        override fun visitTypeArgument(wildcard: Char): SignatureVisitor =
            TypeSignatureVisitor(asmLevel, boundOf(wildcard)).also {
                expectTypeArgument = true
                typeArguments.add(it)
            }
    
        override fun visitTypeVariable(internalName: String) {
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  2. .cm/plugins/filters/byCodeowner/ignore/index.js

                : '\\/.+'
        ],
    
        // normal intermediate wildcards
        [
            // Never replace escaped '*'
            // ignore rule '\*' will match the path '*'
    
            // 'abc.*/' -> go
            // 'abc.*'  -> skip this rule,
            //    coz trailing single wildcard will be handed by [trailing wildcard]
            /(^|[^\\]+)(\\\*)+(?=.+)/g,
    
            // '*.js' matches '.js'
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top