Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for raceinit (0.43 sec)

  1. src/runtime/rand.go

    	lock  mutex
    	seed  [32]byte
    	state chacha8rand.State
    	init  bool
    }
    
    var readRandomFailed bool
    
    // randinit initializes the global random state.
    // It must be called before any use of grand.
    func randinit() {
    	lock(&globalRand.lock)
    	if globalRand.init {
    		fatal("randinit twice")
    	}
    
    	seed := &globalRand.seed
    	if startupRand != nil {
    		for i, c := range startupRand {
    			seed[i%len(seed)] ^= c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/ConfigurationCacheBuildTreeModelSideEffectExecutor.kt

    import org.gradle.internal.buildtree.BuildTreeModelSideEffectExecutor
    
    
    internal
    class ConfigurationCacheBuildTreeModelSideEffectExecutor : BuildTreeModelSideEffectExecutor {
    
        lateinit var sideEffectStore: BuildTreeModelSideEffectStore
    
        override fun runIsolatableSideEffect(sideEffect: BuildTreeModelSideEffect) {
            sideEffect.runSideEffect()
            sideEffectStore.write(sideEffect)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/NativeStandaloneSessionBuilderTest.kt

    import org.junit.jupiter.api.Test
    
    @OptIn(KaAnalysisApiInternals::class)
    class NativeStandaloneSessionBuilderTest {
        @Test
        fun testResolveAgainstCommonKlib() {
            lateinit var sourceModule: KtSourceModule
            val currentArchitectureTarget = HostManager.host
            val nativePlatform = NativePlatforms.nativePlatformByTargets(listOf(currentArchitectureTarget))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/AbstractStandaloneSessionBuilderAgainstStdlibTest.kt

        protected fun doTestKotlinStdLibResolve(
            targetPlatform: TargetPlatform, platformStdlibPath: Path,
            additionalStdlibRoots: List<Path> = emptyList(),
        ) {
            lateinit var sourceModule: KtSourceModule
            val session = buildStandaloneAnalysisAPISession(disposable) {
                buildKtModuleProvider {
                    platform = targetPlatform
                    val stdlib = addModule(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val hasScheduledWork: Boolean
                get() = gradle.taskGraph.size() > 0
    
            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
                    gradle.taskGraph.visitScheduledNodes { nodes, entryNodes -> work = ScheduledWork(nodes, entryNodes) }
                    return work
                }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtSourceModuleBuilder.kt

    import kotlin.io.path.isDirectory
    
    @KtModuleBuilderDsl
    public class KtSourceModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment,
    ) : KtModuleBuilder() {
        public lateinit var moduleName: String
        public var languageVersionSettings: LanguageVersionSettings =
            LanguageVersionSettingsImpl(LanguageVersion.LATEST_STABLE, ApiVersion.LATEST)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @ExtendWith(MockKExtension::class)
    class ApplyDefaultConfigurationTest {
        @MockK(relaxed = true)
        lateinit var buildType: BaseGradleBuildType
    
        private
        val steps = BuildSteps()
    
        private
        val buildModel = CIBuildModel(
            projectId = "Gradle_Check",
            branch = VersionedSettingsBranch("master"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

        private
        inline fun <reified T> newInstance() =
            objectFactory().newInstance(T::class.java)
    
        private
        fun <T : Any> valueCarriedBy(isolatedAction: TestableIsolatedAction<T>): T {
            lateinit var value: T
            isolatedAction.execute {
                value = it
            }
            return value
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        override val sharedIdentities = ReadIdentities()
    
        private
        var singletonProperty: Any? = null
    
        override lateinit var classLoader: ClassLoader
    
        override fun onFinish(action: () -> Unit) {
            pendingOperations.add(action)
        }
    
        fun finish() {
            for (op in pendingOperations) {
                op()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top