Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for _noinline (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ExtensionAwareExtensions.kt

     *
     * @param T the extension type.
     * @param configuration the configuration block.
     * @see [ExtensionAware]
     */
    inline fun <reified T : Any> ExtensionAware.configure(noinline configuration: T.() -> Unit): Unit =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescValueParameterSymbol.kt

        override val isCrossinline: Boolean
            get() = withValidityAssertion { descriptor.isCrossinline }
    
        override val isNoinline: Boolean
            get() = withValidityAssertion { descriptor.isNoinline }
    
        override val isImplicitLambdaParameter: Boolean
            get() = withValidityAssertion {
                descriptor.containingDeclaration is AnonymousFunctionDescriptor &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/bytecode/AsmExtensions.kt

    }
    
    
    internal
    fun MethodVisitor.GOTO(label: Label) {
        visitJumpInsn(Opcodes.GOTO, label)
    }
    
    
    internal
    inline fun <reified T> MethodVisitor.TRY_CATCH(
        noinline tryBlock: MethodVisitor.() -> Unit,
        noinline catchBlock: MethodVisitor.() -> Unit
    ) =
        TRY_CATCH(T::class.internalName, tryBlock, catchBlock)
    
    
    internal
    fun MethodVisitor.TRY_CATCH(
        exceptionType: InternalName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. test/fixedbugs/issue24693.dir/b.go

    // so the code produced for F2 uses { b.m(); a.m() } as the method set
    // order. So again, it ends up calling the wrong method.
    //
    // Also, this function is marked noinline because it's critical to the
    // test that the interface method call happen in this compilation
    // unit, and the itab construction happens in c.go.
    //
    //go:noinline
    func F2(i interface {
    	m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 10 00:06:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirValueParameterSymbol.kt

            }
    
        override val isCrossinline: Boolean get() = withValidityAssertion { firSymbol.isCrossinline }
    
        override val isNoinline: Boolean get() = withValidityAssertion { firSymbol.isNoinline }
    
        override val returnType by cached {
            val returnType = firSymbol.resolvedReturnType
            if (firSymbol.isVararg) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	TagFocus     string  `json:"tagfocus,omitempty"`
    	TagIgnore    string  `json:"tagignore,omitempty"`
    	TagShow      string  `json:"tagshow,omitempty"`
    	TagHide      string  `json:"taghide,omitempty"`
    	NoInlines    bool    `json:"noinlines,omitempty"`
    	ShowColumns  bool    `json:"showcolumns,omitempty"`
    
    	// Output granularity
    	Granularity string `json:"granularity,omitempty"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensions.kt

     * @param configuration the configuration to execute against the remote cache.
     *
     * @see BuildCacheConfiguration.remote
     */
    inline fun <reified T : BuildCache> BuildCacheConfiguration.remote(noinline configuration: T.() -> Unit): T =
    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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DomainObjectCollectionExtensions.kt

     * @return The matching objects. Returns an empty collection if there are no such objects
     * in this collection.
     * @see [DomainObjectCollection.withType]
     */
    inline fun <reified S : Any> DomainObjectCollection<in S>.withType(noinline configuration: S.() -> Unit) =
        withType(S::class.java, configuration)
    
    
    /**
     * Returns a collection containing the objects in this collection of the given type. The
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     * removal in Gradle 9.
     *
     * @param T the project extension type.
     * @param configuration the configuration block.
     * @see [org.gradle.api.plugins.ExtensionAware]
     */
    inline fun <reified T : Any> Project.configure(noinline configuration: T.() -> Unit): Unit =
        typeOf<T>().let { type ->
            // Find and configure extension
            extensions.findByType(type)?.let(configuration)
                ?: Factory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    // msan is concerned. It just waits for a signal.
    // Because the registers are msan-undefined, the signal handler will
    // be invoked with all registers msan-undefined.
    __attribute__((noinline))
    void msanGoWait(unsigned long a1, unsigned long a2, unsigned long a3, unsigned long a4, unsigned long a5, unsigned long a6) {
    	sigset_t mask;
    
    	sigemptyset(&mask);
            sigsuspend(&mask);
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top