Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 765 for isOnline (0.43 sec)

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

        override val psi: PsiElement? by cached { firSymbol.findPsi() }
    
        override val isDefault: Boolean get() = withValidityAssertion { firSymbol.fir is FirDefaultPropertyAccessor }
        override val isInline: Boolean get() = withValidityAssertion { firSymbol.isInline }
        override val isOverride: Boolean
            get() = withValidityAssertion {
                if (firSymbol.isOverride) return@withValidityAssertion true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf-while.mlir

    // CHECK:   call @while_body
    // CHECK:   yield
    // CHECK: while_body
    // CHECK: while_cond
    
    // INLINE: tfl.while
    // INLINE: ^bb0([[ARGS:.*]]):
    // INLINE:   tf.Less
    // INLINE:   yield
    // INLINE: ^bb0([[ARGS]]):
    // INLINE:   %cst_2 = arith.constant
    // INLINE:   yield
    // INLINE-NOT: while_body
    // INLINE-NOT: while_cond
    
    // CANON-LABEL:   func @while_main
    // CANON-SAME:         ([[VAL_0:%.*]]: tensor<?x256x256xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema_generated.h

    };
    
    inline const Padding (&EnumValuesPadding())[2] {
      static const Padding values[] = {
        Padding_SAME,
        Padding_VALID
      };
      return values;
    }
    
    inline const char * const *EnumNamesPadding() {
      static const char * const names[3] = {
        "SAME",
        "VALID",
        nullptr
      };
      return names;
    }
    
    inline const char *EnumNamePadding(Padding e) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

    }
    
    
    inline fun <T : ReadContext, R> T.withImmediateMode(block: T.() -> R): R {
        val immediateMode = this.immediateMode
        try {
            this.immediateMode = true
            return block()
        } finally {
            this.immediateMode = immediateMode
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

        }
    
        override val isInner: Boolean get() = withValidityAssertion { firSymbol.isInner }
        override val isData: Boolean get() = withValidityAssertion { firSymbol.isData }
        override val isInline: Boolean get() = withValidityAssertion { firSymbol.isInline }
        override val isFun: Boolean get() = withValidityAssertion { firSymbol.isFun }
        override val isExternal: Boolean get() = withValidityAssertion { firSymbol.isExternal }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescNamedClassOrObjectSymbol.kt

            get() = withValidityAssertion { descriptor.isInner }
    
        override val isData: Boolean
            get() = withValidityAssertion { descriptor.isData }
    
        override val isInline: Boolean
            get() = withValidityAssertion { descriptor.isInline || descriptor.isValue }
    
        override val isFun: Boolean
            get() = withValidityAssertion { descriptor.isFun }
    
        override val isExternal: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildSrcScriptCompileAvoidanceIntegrationTest.kt

                .assertContainsCompileAvoidanceWarning("buildSrc.jar: class com/example/FooKt: inline fun foo(): compile avoidance is not supported with public inline functions")
    
            givenKotlinScriptInBuildSrcContains(
                "Foo",
                """
                inline fun foo() {
                    println("bar")
                }
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/extensionReceiver.capturing.txt

    ExtensionReceiver[name: with; isMutated: false; displayText: this@with]
        with@fun R|kotlin/String|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
        R|kotlin/String|
    ExtensionReceiver[name: with; isMutated: false; displayText: this@with]
        with@fun R|Foo|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=EXACTLY_ONCE>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 356 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/Logger.kt

    import org.slf4j.LoggerFactory
    
    
    internal
    inline fun <reified T : Any> loggerFor(): Logger =
        LoggerFactory.getLogger(T::class.java)
    
    
    internal
    inline fun Logger.trace(msg: () -> String) {
        if (isTraceEnabled) trace(msg())
    }
    
    
    internal
    inline fun Logger.debug(msg: () -> String) {
        if (isDebugEnabled) debug(msg())
    }
    
    
    internal
    inline fun Logger.info(msg: () -> String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractorTest.kt

            ).assertSameApi()
        }
    
        // test throws until we can detect lambdas in inline functions and treat them as ABI
        @Test(expected = CompileAvoidanceException::class)
        fun `changes to inline method bodies change generated API class`() {
            givenChangingClass(
                "Foo",
                """
                    inline fun foo(): String {
                        return "foo"
                    }
                """,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 12K bytes
    - Viewed (0)
Back to top