Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for noinlines (0.22 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		cfg.Granularity = "addresses"
    		cfg.NoInlines = false // Need inline info to support call expansion
    	case "peek":
    		trim = false
    	case "list":
    		trim = false
    		cfg.Granularity = "lines"
    		// Do not force 'noinlines' to be false so that specifying
    		// "-list foo -noinlines" is supported and works as expected.
    	case "text", "top", "topproto":
    		if cfg.NodeCount == -1 {
    			cfg.NodeCount = 0
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"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."),
    }
    
    func helpText(s ...string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractKotlinIntegrationTest.kt

        }
    
        private
        val testRepositories: String
            get() = testRepositoryPaths.joinLines {
                """
                    maven { url = uri("$it") }
                """
            }
    
        private
        val futurePluginRules: String
            get() = futurePluginVersions.entries.joinLines { (id, version) ->
                """
                    if (requested.id.id == "$id") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 16:44:39 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/components/tf_to_stablehlo.mlir

        return %arg0 : tensor<1x2x2x3xf32>
      }
    }
    
    // CHECK: module
    // CHECK: tf.StatefulPartitionedCall
    // CHECK: func.func private @some_func
    // CHECK-NOT: func.call
    
    // -----
    
    // This test makes sure functions without tf._noinline=true is inlined.
    
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 20:05:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompiler.kt

        }
    }
    
    
    private
    inline fun <T> loggingOutputTo(noinline log: (String) -> Unit, action: () -> T): T =
        redirectingOutputTo({ LoggingOutputStream(log) }, action)
    
    
    private
    inline fun <T> ignoringOutputOf(action: () -> T): T =
        redirectingOutputTo({ NullOutputStream.INSTANCE }, action)
    
    
    private
    inline fun <T> redirectingOutputTo(noinline outputStream: () -> OutputStream, action: () -> T): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/vendor/rsc.io/markdown/inline.go

    	}
    }
    
    func (p *parseState) skip(i int) {
    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    	// Leaf inlines are converted immediately.
    	// Non-leaf inlines have potential starts pushed on a stack while we await completion.
    	// Links take priority over other emphasis, so the emphasis must be delayed.
    	p.s = s
    	p.list = nil
    	p.emitted = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        final override val contextReceivers: List<KaContextReceiver> get() = withValidityAssertion { emptyList() }
    
        /**
         * Returns true if the function parameter is marked with `noinline` modifier
         */
        public abstract val isNoinline: Boolean
    
        /**
         * Returns true if the function parameter is marked with `crossinline` modifier
         */
        public abstract val isCrossinline: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top