Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for _noinline (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"files": "Aggregate at the file level.",
    	"lines": "Aggregate at the source code line level.",
    	"addresses": helpText(
    		"Aggregate at the address level.",
    		"Includes functions' addresses in the output."),
    	"noinlines": helpText(
    		"Ignore inlines.",
    		"Attributes inlined functions to their first out-of-line caller."),
    	"showcolumns": helpText(
    		"Show column numbers at the source code line level."),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf_test.go

    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	t.Parallel()
    
    	const prog = `
    package main
    
    var G int
    
    func noinline(x int) int {
    	defer func() { G += x }()
    	return x
    }
    
    func cand(x, y int) int {
    	return noinline(x+y) ^ (y - x)
    }
    
    func main() {
    	x := cand(G*G,G|7%G)
    	G = x
    }
    `
    	// Note: this is a build with "-l=4", as opposed to "-l -N". The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  8. cmd/erasure-object_test.go

    	err = objLayer.MakeBucket(ctx, "testbucket", MakeBucketOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Unzip sample object data to the existing disks
    	err = unzipArchive("testdata/xl-meta-inline-notinline.zip", path)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Try to read the object and check its md5sum
    	gr, err := objLayer.GetObjectNInfo(ctx, "testbucket", "file", nil, nil, ObjectOptions{})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top