Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 198 for creading (0.2 sec)

  1. src/sync/rwmutex.go

    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    // acquire-release semantics, which would incorrectly synchronize racing
    // readers, thus potentially missing races.
    
    // RLock locks rw for reading.
    //
    // It should not be used for recursive read locking; a blocked Lock
    // call excludes new readers from acquiring the lock. See the
    // documentation on the [RWMutex] type.
    func (rw *RWMutex) RLock() {
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    		defer wg.Done()
    		for {
    			select {
    			case <-stopChan:
    				return
    			default:
    			}
    
    			time.Sleep(10 * time.Millisecond)
    
    			updateCRD()
    		}
    	}()
    
    	// Set up 10 loops creating and reading custom resources
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func(i int) {
    			defer wg.Done()
    			noxuInstanceToCreate := fixtures.NewNoxuInstance(ns, fmt.Sprintf("foo-%d", i))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            outputContains("configuring root")
            outputContains("creating model with parameter='fetch1' for root project 'root'")
            outputContains("creating model with parameter='fetch2' for root project 'root'")
            outputContains("configuring project ':a'")
            outputContains("creating model with parameter='fetch1' for project ':a'")
            outputContains("creating model with parameter='fetch2' for project ':a'")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiPhasedBuildActionIntegrationTest.groovy

                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":")
                modelsCreated(":a")
            }
            outputContains("creating model for root project 'root'")
            outputContains("creating model for project ':a'")
    
            when:
            executer.withArguments(ENABLE_CLI)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiBuildActionIntegrationTest.groovy

                projectConfigured(":buildSrc")
                projectConfigured(":b")
                buildModelCreated()
                modelsCreated(":", ":a")
            }
            outputContains("creating model for root project 'root'")
            outputContains("creating model for project ':a'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = runBuildAction(new FetchCustomModelForEachProject())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/shake.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sha3
    
    // This file defines the ShakeHash interface, and provides
    // functions for creating SHAKE and cSHAKE instances, as well as utility
    // functions for hashing bytes to arbitrary-length output.
    //
    //
    // SHAKE implementation is based on FIPS PUB 202 [1]
    // cSHAKE implementations is based on NIST SP 800-185 [2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

    import java.util.function.Supplier
    
    class UndeclaredBuildInputsIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
        def testDir = testDirectoryProvider.testDirectory
    
        def "reports build logic reading a system property set #mechanism.description via the Java API"() {
            buildFile << """
                // not declared
                System.getProperty("CI")
            """
    
            when:
            mechanism.setup(this)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiModelQueryIntegrationTest.groovy

                modelsCreated(":")
            }
            outputContains("creating model for root project 'root'")
    
            when:
            executer.withArguments(ENABLE_CLI)
            def model2 = fetchModel()
    
            then:
            model2.message == "It works from project :"
    
            and:
            fixture.assertStateLoaded()
            outputDoesNotContain("creating model")
    
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/build.gradle.kts

    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    val reports by configurations.creating
    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
        reports("jquery:jquery.min:3.5.1@js")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    
    Compilation warnings from Kotlin DSL scripts are printed to the console output.
    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    This is a potentially breaking change if you are consuming the console output of Gradle builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top