Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for tolen (0.04 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbol.kt

        val firSymbol: S
        val analysisSession: KaFirSession
        val builder: KaSymbolByFirBuilder get() = analysisSession.firSymbolBuilder
    
        override val token: KaLifetimeToken get() = analysisSession.token
        override val origin: KaSymbolOrigin get() = withValidityAssertion { firSymbol.fir.ktSymbolOrigin() }
    }
    
    internal fun KaFirSymbol<*>.symbolEquals(other: Any?): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

            hasArguments = this is FirAnnotationCall && this.arguments.isNotEmpty(),
            lazyArguments = lazy { argumentsFactory(classId) },
            index = index,
            constructorSymbol = constructorSymbol,
            token = builder.token,
        )
    }
    
    private fun findAnnotationConstructor(annotation: FirAnnotation, session: LLFirSession): FirConstructorSymbol? {
        if (annotation is FirAnnotationCall) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KtEmptyAnnotationsList.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.name.ClassId
    import java.util.Collections
    
    class KaEmptyAnnotationList(override val token: KaLifetimeToken) : AbstractList<KaAnnotation>(), KaAnnotationList {
        override val size: Int
            get() = withValidityAssertion { 0 }
    
        override fun iterator(): Iterator<KaAnnotation> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtAbstractFirDiagnostic.kt

    import org.jetbrains.kotlin.diagnostics.rendering.RootDiagnosticRendererFactory
    
    internal abstract class KaAbstractFirDiagnostic<PSI : PsiElement>(
        private val firDiagnostic: KtPsiDiagnostic,
        override val token: KaLifetimeToken,
    ) : KaDiagnosticWithPsi<PSI>, KaLifetimeOwner {
    
        override val factoryName: String
            get() = withValidityAssertion { firDiagnostic.factory.name }
    
        override val defaultMessage: String
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultPropertySetterSymbol.kt

        override val annotations: KaAnnotationList
            get() = withValidityAssertion {
                descriptor?.let { KaFe10AnnotationList.create(it.annotations, analysisContext) } ?: KaEmptyAnnotationList(token)
            }
    
        @OptIn(KaAnalysisApiInternals::class)
        override fun createPointer(): KaSymbolPointer<KaPropertySetterSymbol> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			name:   "test List with pregenerated continue token",
    			prefix: "/pods/second/",
    			pred: storage.SelectionPredicate{
    				Label:    labels.Everything(),
    				Field:    fields.Everything(),
    				Limit:    1,
    				Continue: secondContinuation,
    			},
    			expectedOut: []example.Pod{*preset[2]},
    		},
    		{
    			name:   "ignores resource version 0 for List with pregenerated continue token",
    			prefix: "/pods/second/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. samples/addons/prometheus.yaml

        - /etc/config/alerts
        scrape_configs:
        - job_name: prometheus
          static_configs:
          - targets:
            - localhost:9090
        - bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
          job_name: kubernetes-apiservers
          kubernetes_sd_configs:
          - role: endpoints
          relabel_configs:
          - action: keep
            regex: default;kubernetes;https
            source_labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirClassInitializerSymbol.kt

        override val typeParameters: List<KaTypeParameterSymbol> get() = withValidityAssertion { emptyList() }
        override val annotations: KaAnnotationList get() = withValidityAssertion { KaEmptyAnnotationList(token) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	// only present in the internal version and not in public versions
    	obj.ClusterConfiguration = kubeadm.ClusterConfiguration{}
    
    	// Adds the default bootstrap token to get the round trip working
    	obj.BootstrapTokens = []bootstraptokenv1.BootstrapToken{
    		{
    			Groups: []string{"foo"},
    			Usages: []string{"foo"},
    			TTL:    &metav1.Duration{Duration: 1234},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiClassInitializerSymbol.kt

        }
    
        override val typeParameters: List<KaTypeParameterSymbol> get() = withValidityAssertion { emptyList() }
        override val annotations: KaAnnotationList get() = withValidityAssertion { KaEmptyAnnotationList(token) }
    
        override fun equals(other: Any?): Boolean = isEqualTo(other)
        override fun hashCode(): Int = calculateHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top