Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for parseQualifiedName (0.32 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

    
    private
    fun KotlinLexer.simpleSearchForPackageName(): String? =
        when (tokenType) {
            KtTokens.PACKAGE_KEYWORD -> {
                advance()
                skipWhiteSpaceAndComments()
                parseQualifiedName()
            }
    
            else -> null
        }
    
    
    private
    fun KotlinLexer.extensiveSearchForPackageName(): String? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/util/cdi/cdi.go

    func annotationValue(devices []string) (string, error) {
    	value, sep := "", ""
    	for _, d := range devices {
    		if _, _, _, err := parseQualifiedName(d); err != nil {
    			return "", err
    		}
    		value += sep + d
    		sep = ","
    	}
    
    	return value, nil
    }
    
    // parseQualifiedName splits a qualified name into device vendor, class,
    // and name. If the device fails to parse as a qualified name, or if any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Lexer.kt

                                    PACKAGE_KEYWORD -> {
                                        advance()
                                        skipWhiteSpaceAndComments()
                                        packageName = parseQualifiedName()
                                    }
                                    IDENTIFIER -> matchTopLevelIdentifier()
                                    LBRACE -> depth += 1
                                    RBRACE -> depth -= 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top