Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for joinLines (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/string.kt

    package org.gradle.kotlin.dsl.fixtures
    
    
    fun <T> Iterable<T>.joinLines(transform: (T) -> String) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 157 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/AbstractRepositoryMetadataSource.java

            if (errors.size() > 0) {
                throw new MetaDataParseException(
                        String.format("inconsistent module metadata found. Descriptor: %s Errors: %s", actualId, joinLines(errors)));
            }
        }
    
        private String joinLines(List<String> lines) {
            return Joiner.on(SystemProperties.getInstance().getLineSeparator()).join(lines);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  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)
Back to top