Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for prefix (0.4 sec)

  1. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # and -fno-canonical-systemd-headers are permitted for internal linking.
    env CGO_CFLAGS=-fdebug-prefix-map=old=/tmp/new
    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=-ffile-prefix-map=/Users/someone/_11233/things=new
    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    env CGO_CFLAGS=-no-canonical-prefixes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            TrackingProperties(System.getProperties().uncheckedCast()) { prefix, snapshot ->
                listener.systemPropertiesPrefixedBy(prefix, snapshot)
            }
    
        override fun getVariables(): Environment.Properties =
            TrackingProperties(System.getenv()) { prefix, snapshot ->
                listener.envVariablesPrefixedBy(prefix, snapshot)
            }
    
        private
        class TrackingProperties(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

        binDistributionZip.distributionZip = configurations["${prefix}TestBinDistributionPath"]
        allDistributionZip.distributionZip = configurations["${prefix}TestAllDistributionPath"]
        docsDistributionZip.distributionZip = configurations["${prefix}TestDocsDistributionPath"]
        srcDistributionZip.distributionZip = configurations["${prefix}TestSrcDistributionPath"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. src/README.vendor

    imported normally and vendored by the standard library.
    
    Vendored packages are internally renamed with a "vendor/" prefix
    to preserve the invariant that all packages have distinct paths.
    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt

            isRelease -> "promoteFinalRelease"
            else -> "promoteFinalBackportRelease"
        }
    
        private fun nightlyTaskName(prefix: String): String = when {
            isMaster -> "${prefix}Nightly"
            isRelease -> "${prefix}ReleaseNightly"
            else -> "${prefix}PatchReleaseNightly"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/stdlib/MapExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.stdlib
    
    
    fun <V> Map<String, V>.filterKeysByPrefix(prefix: String): Map<String, V?> =
        filterKeys { key -> key.length > prefix.length && key.startsWith(prefix) }
    
    
    /**
     * Inverts the given map by swapping its keys with their corresponding values and returns the resulting map.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/CommonListPrefixTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class CommonListPrefixTest {
    
        @Test
        fun `common is prefix`() {
    
            val a = listOf("a", "b", "c", "0", "1", "2", "d")
            val b = listOf("a", "b", "c", "3", "4", "5", "d")
            val c = listOf("a", "b", "c", "6", "7", "8", "d")
    
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

        val codeSection = codeStatements.joinToString("") { "$it\n" }
    
        val prefix = "${packageSection}${importSection}class Script {init {"
        val suffix = "}}"
        val codeOffset = prefix.length
        return Triple("$prefix$codeSection$suffix", codeOffset, suffix.length)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    fun createQuickFeedbackTasks() {
        val testType = TestType.CROSSVERSION
        val defaultExecuter = "embedded"
        val prefix = testType.prefix
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {
                this.setSystemPropertiesOfTestJVM("latest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CharSequenceExtensions.kt

     */
    internal
    fun CharSequence.lineAndColumnFor(index: Int): Pair<Int, Int> {
        val prefix = take(index)
        val lineCountBefore = prefix.count { it == '\n' }
        val lineNumber = lineCountBefore + 1
        val lastNewLineIndex = prefix.lastIndexOf('\n')
        return lineNumber to (index - lastNewLineIndex)
    }
    
    
    internal
    fun CharSequence.splitIncluding(delimiter: Char) = sequence {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top