Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for qualifierOf (0.14 sec)

  1. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

            Key<?> key = Key.of(clazz, ReflectionUtils.qualifierOf(clazz));
            Binding<U> binding = Binding.toInstance(instance);
            return doBind(key, binding);
        }
    
        @Override
        public Injector bindImplicit(Class<?> clazz) {
            Key<?> key = Key.of(clazz, ReflectionUtils.qualifierOf(clazz));
            if (clazz.isInterface()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                }
    
                qualifier.getCalleeExpressionIfAny() as? KtNameReferenceExpression
                    ?: errorWithAttachment("Cannot get referenced name from '${qualifier::class}'") {
                        withPsiEntry("qualifier", qualifier)
                    }
            }
    
            override val referencedByName: Name
                get() = typeNameReference.getReferencedNameAsName()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val qualifiers = generateSequence(this as KtExpression) { (it as? KtDotQualifiedExpression)?.receiverExpression }
                .map { (it as? KtDotQualifiedExpression)?.selectorExpression ?: it }
                .toList()
                .asReversed()
    
            val qualifyingReferences = qualifiers.mapIndexed { index, qualifier ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                val unresolvedName = when (val diagnostic = errorType?.diagnostic) {
                    is ConeUnresolvedTypeQualifierError -> diagnostic.qualifier
                    is ConeUnresolvedNameError -> diagnostic.qualifier
                    else -> null
                }
                qualifierParts += unresolvedName
                if (errorType != null && expression is FirPropertyAccessExpression) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                }
            }
        }
    
        private fun KaSession.renderTypeQualifier(value: KaClassTypeQualifier, printer: PrettyPrinter) {
            with(printer) {
                appendLine("qualifier:")
                withIndent {
                    renderByPropertyNames(value, printer)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    GIT_ALLOW_PROTOCOL environment variable can be set (For more details see:
    'go help environment').
    
    If the import path is not a known code hosting site and also lacks a
    version control qualifier, the go tool attempts to fetch the import
    over https/http and looks for a <meta> tag in the document's HTML
    <head>.
    
    The meta tag has the form:
    
    	<meta name="go-import" content="import-prefix vcs repo-root">
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top