Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,076 for isOnline (0.34 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                .assertContainsCompileAvoidanceWarning("buildSrc.jar: class com/example/Foo: inline fun foo(): compile avoidance is not supported with public inline functions")
        }
    
        @Test
        fun `recompiles buildscript on inline lambda function change in buildSrc class`() {
            val className = givenKotlinClassInBuildSrcContains(
                """
                inline fun foo() {
                    val sum: (Int, Int) -> Int = { x, y -> x + y }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/testing/types.go

    type ObjectTestExternal struct {
    	runtime.TypeMeta `yaml:",inline" json:",inline"`
    
    	ID    string                 `json:"id,omitempty"`
    	Items []runtime.RawExtension `json:"items,omitempty"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type InternalSimple struct {
    	runtime.TypeMeta `json:",inline"`
    	TestString       string `json:"testString"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top