Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for _noinline (0.12 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescDefaultPropertySetterSymbol.kt

                get() = withValidityAssertion { false }
    
            override val isCrossinline: Boolean
                get() = withValidityAssertion { false }
    
            override val isNoinline: Boolean
                get() = withValidityAssertion { false }
    
            override val name: Name
                get() = withValidityAssertion { Name.identifier("value") }
    
            override val returnType: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultPropertySetterSymbol.kt

                get() = withValidityAssertion { false }
    
            override val isCrossinline: Boolean
                get() = withValidityAssertion { false }
    
            override val isNoinline: Boolean
                get() = withValidityAssertion { false }
    
            override val name: Name
                get() = withValidityAssertion { Name.identifier("value") }
    
            override val returnType: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/runtime/symtab_test.go

    	for p := 0; p < procs; p++ {
    		go func() {
    			for i := 0; i < 1000; i++ {
    				testCallerFoo(t)
    			}
    			c <- true
    		}()
    		defer func() {
    			<-c
    		}()
    	}
    }
    
    // These are marked noinline so that we can use FuncForPC
    // in testCallerBar.
    //
    //go:noinline
    func testCallerFoo(t *testing.T) {
    	testCallerBar(t)
    }
    
    //go:noinline
    func testCallerBar(t *testing.T) {
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

      pm.addPass(mlir::quant::CreateMergeSaveFunctionOpsToMainPass());
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::quant::CreateMergeDuplicateResourceOpsPass());
    
      // Used to clean up the "tf._noinliner" attribute that is previously used to
      // prevent certain functions from being inlined (see
      // `MarkFunctionsNoinlinePass`). InlinerPass must not come after this pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	for _, n := range g.Nodes {
    		name, flat, cum := n.Info.PrintableName(), n.FlatValue(), n.CumValue()
    
    		var inline, noinline bool
    		for _, e := range n.In {
    			if e.Inline {
    				inline = true
    			} else {
    				noinline = true
    			}
    		}
    
    		var inl string
    		if inline {
    			if noinline {
    				inl = "(partial-inline)"
    			} else {
    				inl = "(inline)"
    			}
    		}
    
    		flatSum += flat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensions.kt

     *
     * @see [NamedDomainObjectCollection.named]
     * @see [NamedDomainObjectProvider.configure]
     */
    @Suppress("unchecked_cast")
    inline fun <reified T : Any> NamedDomainObjectCollection<out Any>.named(name: String, noinline configuration: T.() -> Unit): NamedDomainObjectProvider<T> =
        (this as NamedDomainObjectCollection<T>).named(name, T::class.java, configuration)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        val registeredTestProjects: MutableList<TaskProvider<out Task>> = mutableListOf()
    
        abstract
        val baselines: Property<String>
    
        inline fun <reified T : Task> registerTestProject(testProject: String, noinline configuration: T.() -> Unit): TaskProvider<T> =
            registerTestProject(testProject, T::class.java, configuration)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        }
    }
    
    
    private
    inline fun <reified T : Task> Project.codeGenerationTask(
        purpose: String,
        taskName: String,
        kotlinSourceDirectorySet: SourceDirectorySet,
        noinline configure: T.(Provider<Directory>) -> Unit
    ) = buildDir("generated-sources/kotlin-dsl-$purpose/kotlin").let { outputDir ->
        val task = tasks.register(taskName, T::class.java) {
            it.configure(outputDir)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

        private
        val kotlinScriptHostToVoid =
            "(Lorg/gradle/kotlin/dsl/support/KotlinScriptHost;)V"
    
        private
        inline fun <reified T : ExecutableProgram> program(noinline classBody: ClassWriter.() -> Unit = {}) {
            program(T::class.internalName, classBody)
        }
    
        private
        fun program(superName: InternalName, classBody: ClassWriter.() -> Unit = {}) {
            writeFile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    	createfing()
    
    	systemstack(func() {
    		if !addfinalizer(e.data, (*funcval)(f.data), nret, fint, ot) {
    			throw("runtime.SetFinalizer: finalizer already set")
    		}
    	})
    }
    
    // Mark KeepAlive as noinline so that it is easily detectable as an intrinsic.
    //
    //go:noinline
    
    // KeepAlive marks its argument as currently reachable.
    // This ensures that the object is not freed, and its finalizer is not run,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top