Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for parseQualifiedName (0.17 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)
  4. src/go/internal/gccgoimporter/parser.go

    		p.imports[pkgpath] = pkg
    	}
    	return pkg
    }
    
    // parseExportedName is like parseQualifiedName, but
    // the package path is resolved to an imported *types.Package.
    //
    // ExportedName = string [string] .
    func (p *parser) parseExportedName() (pkg *types.Package, name string) {
    	path, name := p.parseQualifiedName()
    	var pkgname string
    	if p.tok == scanner.String {
    		pkgname = p.parseString()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top