Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,076 for isOnline (0.34 sec)

  1. 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)
  2. 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)
  3. test/fixedbugs/issue54159.go

    package main
    
    func run() { // ERROR "cannot inline run: recursive"
    	f := func() { // ERROR "can inline run.func1 with cost .* as:.*" "func literal does not escape"
    		g() // ERROR "inlining call to g"
    	}
    	f() // ERROR "inlining call to run.func1" "inlining call to g"
    	run()
    }
    
    func g() { // ERROR "can inline g with cost .* as:.*"
    }
    
    func main() { // ERROR "can inline main with cost .* as:.*"
    	run()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 28 04:29:02 UTC 2023
    - 586 bytes
    - Viewed (0)
  4. test/live_uintptrkeepalive.go

    //go:uintptrkeepalive
    //go:nosplit
    func explicit(uintptr) {
    }
    
    func autotmpImplicit() { // ERROR "can inline autotmpImplicit"
    	var t int
    	implicit(uintptr(unsafe.Pointer(&t))) // ERROR "live at call to implicit: .?autotmp" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
    }
    
    func autotmpExplicit() { // ERROR "can inline autotmpExplicit"
    	var t int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

                assertGeneratedExtensions(
                    """
                    inline fun org.gradle.kotlin.dsl.fixtures.codegen.ClassToKClass.`rawClass`(`type`: kotlin.reflect.KClass<*>): Unit =
                        `rawClass`(`type`.java)
                    """,
                    """
                    inline fun org.gradle.kotlin.dsl.fixtures.codegen.ClassToKClass.`unknownClass`(`type`: kotlin.reflect.KClass<*>): Unit =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertySetterSymbol.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 true
                val propertySymbol = firSymbol.fir.propertySymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ObjectFactoryExtensions.kt

     * @return the created named object
     *
     * @see [ObjectFactory.newInstance]
     */
    inline fun <reified T> ObjectFactory.newInstance(vararg parameters: Any): T =
        newInstance(T::class.java, *parameters)
    
    
    /**
     * Creates a [Property] that holds values of the given type [T].
     *
     * @see [ObjectFactory.property]
     */
    inline fun <reified T> ObjectFactory.property(): Property<T> =
        property(T::class.java)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *    119 : Ignored.
     *    120 : Valid.
     *    121 : Disallowed
     *    122 : Mapped inline to the sequence: [b2].
     *    123 : Mapped inline to the sequence: [b2a].
     *    124 : Mapped inline to the sequence: [b2, b3].
     *    125 : Mapped inline to the sequence: [b2a, b3].
     *    126 : Mapped inline to the sequence: [b2, b3a].
     *    127 : Mapped inline to the sequence: [b2a, b3a].
     *
     * The range goes until the beginning of the next range.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/smartCastExtensionReceiver.capturing.txt

    ExtensionReceiver[name: dumbWith; isMutated: false; displayText: this@dumbWith]
        dumbWith@fun R|kotlin/Any?|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=UNKNOWN>
        R|kotlin/Any?|
    ExtensionReceiver[name: dumbWith; isMutated: false; displayText: this@dumbWith]
        dumbWith@fun R|kotlin/Any?|.<anonymous>(): R|kotlin/Unit| <inline=Inline, kind=UNKNOWN>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Sep 04 15:47:56 UTC 2023
    - 382 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/utils.h

    inline bool IsAllOnesConstant(Attribute value) {
      auto values = value.cast<DenseElementsAttr>().getValues<int32_t>();
      return !std::any_of(values.begin(), values.end(),
                          [](int32_t element_value) { return element_value != 1; });
    }
    
    // Checks if all elements in the constant attribute value are non-negative.
    inline bool HasNonNegativeValues(Attribute value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top