Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for eval (0.18 sec)

  1. Makefile

    hotfix-vars:
    	$(eval LDFLAGS := $(shell MINIO_RELEASE="RELEASE" MINIO_HOTFIX="hotfix.$(shell git rev-parse --short HEAD)" go run buildscripts/gen-ldflags.go $(shell git describe --tags --abbrev=0 | \
        sed 's#RELEASE\.\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)T\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)Z#\1-\2-\3T\4:\5:\6Z#')))
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
  2. RELEASE.md

            to store weights, allowing a dramatic speedup for large sparse models.
        *   Enable the Keras compile API `experimental_run_tf_function` flag by
            default. This flag enables single training/eval/predict execution path.
            With this 1. All input types are converted to `Dataset`. 2. When
            distribution strategy is not specified this goes through the no-op
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  3. cmd/testdata/undeleteable-object.tgz

    "value":""}]},"batch":{"_":[{"key":"replication_workers_wait","value":"0ms"},{"key":"keyrotation_workers_wait","value":"0ms"},{"key":"expiration_workers_wait","value":"0ms"}]},"browser":{"_":[{"key":"csp_policy","value":"default-src 'self' 'unsafe-eval' 'unsafe-inline';"},{"key":"hsts_seconds","value":"0"},{"key":"hsts_include_subdomains","value":"off"},{"key":"hsts_preload","value":"off"},{"key":"referrer_policy","value":"strict-origin-when-cross-origin"}]},"cache":{"_":[{"key":"enable","value"...
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 00:31:12 GMT 2024
    - 8.7M bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

    import org.jetbrains.kotlin.utils.exceptions.errorWithAttachment
    import org.jetbrains.kotlin.utils.exceptions.withPsiEntry
    
    internal class KtFirScopeProvider(
        override val analysisSession: KtFirAnalysisSession,
        private val builder: KtSymbolByFirBuilder,
        private val firResolveSession: LLFirResolveSession,
    ) : KtScopeProvider() {
    
        private fun getScopeSession(): ScopeSession {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

    internal class KtFe10AnnotationsList private constructor(
        private val fe10Annotations: Annotations,
        private val annotationsToIgnore: Set<ClassId>,
        private val analysisContext: Fe10AnalysisContext
    ) : KtAnnotationsList() {
        override val token: KtLifetimeToken
            get() = analysisContext.token
    
        override val annotations: List<KtAnnotationApplicationWithArgumentsInfo>
            get() = withValidityAssertion {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForDeclaration.kt

    internal class KtFirAnnotationListForDeclaration private constructor(
        val firSymbol: FirBasedSymbol<*>,
        private val builder: KtSymbolByFirBuilder,
    ) : KtAnnotationsList() {
        override val token: KtLifetimeToken get() = builder.token
        private val useSiteSession: FirSession get() = builder.rootSession
    
        override val annotations: List<KtAnnotationApplicationWithArgumentsInfo>
            get() = withValidityAssertion {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/connection/FastFallbackExchangeFinderTest.kt

    internal class FastFallbackExchangeFinderTest {
      private val taskFaker = TaskFaker()
      private val taskRunner = taskFaker.taskRunner
    
      /**
       * Note that we don't use the same [TaskFaker] for this factory. That way off-topic tasks like
       * connection pool maintenance tasks don't add noise to route planning tests.
       */
      private val routePlanner = FakeRoutePlanner(taskFaker = taskFaker)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 24 04:40:49 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

    private data class AvailableSymbol<out T>(
        val symbol: T,
        val importKind: ImportKind,
    )
    
    private class FirShorteningContext(val analysisSession: KtFirAnalysisSession) {
        private val firResolveSession = analysisSession.firResolveSession
    
        private val firSession: FirSession
            get() = firResolveSession.useSiteFirSession
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

        }
    
        private fun computeErrorCallClassId(call: FirGetClassCall): ClassId? {
            val qualifierParts = mutableListOf<String?>()
    
            fun process(expression: FirExpression) {
                val errorType = expression.resolvedType as? ConeErrorType
                val unresolvedName = when (val diagnostic = errorType?.diagnostic) {
                    is ConeUnresolvedTypeQualifierError -> diagnostic.qualifier
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FunctionalType.kt

    internal class KtFe10FunctionalType(
        override val fe10Type: SimpleType,
        private val descriptor: FunctionClassDescriptor,
        override val analysisContext: Fe10AnalysisContext
    ) : KtFunctionalType(), KtFe10Type {
        override fun asStringForDebugging(): String = withValidityAssertion { fe10Type.asStringForDebugging(analysisContext) }
    
        override val nullability: KtTypeNullability
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 5.6K bytes
    - Viewed (0)
Back to top