Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for raceinit (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/ArtifactHandlerExtensionsTest.kt

            val configuration: Configuration = mock {
                on { name } doReturn "configName"
            }
            val firstNotation = "a:b:c"
            val secondNotation = "d:e:f"
    
            lateinit var firstArtifact: PublishArtifact
            lateinit var secondArtifact: PublishArtifact
            artifacts {
                firstArtifact = configuration(firstNotation)
                secondArtifact = "string-invoke"(secondNotation)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/mips64/obj.go

    	theArch := ld.Arch{
    		Funcalign:        funcAlign,
    		Maxalign:         maxAlign,
    		Minalign:         minAlign,
    		Dwarfregsp:       dwarfRegSP,
    		Dwarfreglr:       dwarfRegLR,
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    
    		ELF: ld.ELFArch{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && riscv64
    
    package cpu
    
    func archInit() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 243 bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                it.name = name
                configure(it)
            }
    
            @get:Restricted
            lateinit var complexValueOne: ComplexValueOne
    
            @get:Restricted
            lateinit var complexValueOneFromUtils: ComplexValueOne
    
            @get:Restricted
            lateinit var complexValueTwo: ComplexValueTwo
    
            @Adding
            fun justAdd(name: String): TopLevelElement = TopLevelElement()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/kotlin/buildSrc/src/test/kotlin/com/example/PluginTest.kt

    import org.junit.rules.TemporaryFolder
    import java.io.File
    
    abstract class PluginTest {
    
        @Rule
        @JvmField
        val testProjectDir: TemporaryFolder = TemporaryFolder()
        protected lateinit var settingsFile: File
        protected lateinit var buildFile: File
    
        @Before
        fun setup() {
            settingsFile = testProjectDir.newFile("settings.gradle.kts")
            settingsFile.appendText("""
                rootProject.name = "test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/obj.go

    		Dwarfreglr: dwarfRegLR,
    		// 0xCC is INT $3 - breakpoint instruction
    		CodePad: []byte{0xCC},
    
    		Plan9Magic:  uint32(4*26*26 + 7),
    		Plan9_64Bit: true,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    		MachorelocSize:   8,
    		PEreloc1:         pereloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm64/obj.go

    		Minalign:   minAlign,
    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    		TrampLimit: 0x7c00000, // 26-bit signed offset * 4, leave room for PLT etc.
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Gentext:          gentext,
    		GenSymsLate:      gensymlate,
    		Machoreloc1:      machoreloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_wasm.go

    // Make CacheLinePad an empty struct and hope that the usual struct alignment
    // rules are good enough.
    
    const cacheLineSize = 0
    
    func initOptions() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 439 bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

    import java.io.File
    import java.io.StringWriter
    
    
    abstract class AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest {
        @TempDir
        lateinit var projectDir: File
        lateinit var firstAcceptedApiChangesFile: File
        lateinit var secondAcceptedApiChangesFile: File
    
        @BeforeEach
        fun setUp() {
            projectDir.resolve("src").resolve("changes").resolve("accepted-changes").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/arm/obj.go

    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    		TrampLimit: 0x1c00000, // 24-bit signed offset * 4, leave room for PLT etc.
    
    		Plan9Magic: 0x647,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Trampoline:       trampoline,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top