Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for tolen (0.04 sec)

  1. pkg/security/security.go

    	// Require3PToken disables the use of K8S 1P tokens. Note that 1P tokens can be used to request
    	// 3P TOKENS. A 1P token is the token automatically mounted by Kubelet and used for authentication with
    	// the Apiserver.
    	Require3PToken = env.Register("REQUIRE_3P_TOKEN", false,
    		"Reject k8s default tokens, without audience. If false, default K8S token will be accepted")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. cmd/batch-job-common-types.go

    	}
    	return false
    }
    
    // BatchJobNotification stores notification endpoint and token information.
    // Used by batch jobs to notify of their status.
    type BatchJobNotification struct {
    	line, col int
    	Endpoint  string `yaml:"endpoint" json:"endpoint"`
    	Token     string `yaml:"token" json:"token"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobNotification{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeCreator.kt

    internal class KaFe10TypeCreator(
        override val analysisSession: KaFe10Session
    ) : KaTypeCreator(), KaFe10SessionComponent {
        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun buildClassType(builder: KaClassTypeBuilder): KaType {
            val descriptor: ClassDescriptor? = when (builder) {
                is KaClassTypeBuilder.ByClassId -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FunctionalType.kt

                        innerType.classDescriptor.toKaClassSymbol(analysisContext),
                        innerType.arguments.map { it.toKtTypeProjection(analysisContext) },
                        token
                    )
                }
            }
    
        override val isSuspend: Boolean
            get() = withValidityAssertion { descriptor.functionTypeKind.isSuspendOrKSuspendFunction }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertyGetterSymbol.kt

        override val firSymbol: FirPropertyAccessorSymbol,
        override val analysisSession: KaFirSession,
    ) : KaPropertyGetterSymbol(), KaFirSymbol<FirPropertyAccessorSymbol> {
        override val token: KaLifetimeToken get() = builder.token
        init {
            require(firSymbol.isGetter)
        }
    
        override val psi: PsiElement? by cached { firSymbol.findPsi() }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/options_test.go

    		"--audit-webhook-truncate-max-event-size=42",
    		"--audit-webhook-initial-backoff=2s",
    		"--audit-webhook-version=audit.k8s.io/v1",
    		"--authentication-token-webhook-cache-ttl=3m",
    		"--authentication-token-webhook-config-file=/token-webhook-config",
    		"--authorization-mode=AlwaysDeny,RBAC",
    		"--authorization-policy-file=/policy",
    		"--authorization-webhook-cache-authorized-ttl=3m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

    internal class KaFirNamedClassOrObjectSymbol(
        override val firSymbol: FirRegularClassSymbol,
        override val analysisSession: KaFirSession,
    ) : KaFirNamedClassOrObjectSymbolBase() {
        override val token: KaLifetimeToken get() = builder.token
        override val psi: PsiElement? by cached { firSymbol.findPsi() }
    
        override val name: Name get() = withValidityAssertion { firSymbol.name }
    
        override val classId: ClassId?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescDefaultPropertySetterSymbol.kt

        override val visibility: Visibility
            get() = withValidityAssertion { propertyDescriptor.ktVisibility }
    
        override val annotations: KaAnnotationList
            get() = withValidityAssertion { KaEmptyAnnotationList(token) }
    
        override fun createPointer(): KaSymbolPointer<KaPropertySetterSymbol> = withValidityAssertion {
            KaFe10NeverRestoringSymbolPointer()
        }
    
        class KaDefaultValueParameterSymbol(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                is ConeStarProjection -> KaStarTypeProjection(token)
                is ConeKotlinTypeProjection -> KaTypeArgumentWithVariance(
                    buildKtType(coneType.type),
                    coneType.kind.toVariance(),
                    token,
                )
            }
    
            private fun ProjectionKind.toVariance(): Variance = when (this) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/DiagnosticUtils.kt

    import org.jetbrains.kotlin.diagnostics.Severity.*
    import kotlin.reflect.KClass
    
    class KaNonBoundToPsiErrorDiagnostic(
        override val factoryName: String,
        override val defaultMessage: String,
        override val token: KaLifetimeToken,
    ) : KaDiagnostic {
        override val severity: KaSeverity
            get() = withValidityAssertion { KaSeverity.ERROR }
    
        override val diagnosticClass: KClass<*>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top