Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,912 for anotherOk (0.13 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Instants.groovy

                }
                if (timePoints.containsKey(name)) {
                    return
                }
                throw new IllegalStateException("Timeout waiting for instant '$name' to be defined by another thread.")
            }
        }
    
        private long monotonicClockMillis() {
            System.nanoTime() / 1000000L
        }
    
        def getProperty(String name) {
            synchronized (lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
            }
            buildFile << """
                configurations {
                    other.shouldResolveConsistentlyWith(another)
                    another.shouldResolveConsistentlyWith(conf)
                    conf.shouldResolveConsistentlyWith(other)
                }
    
                dependencies {
                    conf 'org:foo:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseTestConfigurationsWithExternalDependenciesIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "can configure which source set dependency configurations contribute test dependencies to the classpath"() {
            given:
            mavenRepo.module('org', 'another').publish()
            buildFile << """
                configurations {
                    integration
                }
    
                dependencies {
                    integration 'org:lib:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/PCHUtilsTest.groovy

        def "generates a prefix header file" () {
            def headers = new ArrayList<>()
            headers.add "header.h"
            headers.add "<stdio.h>"
            headers.add "some/path/to/another.h"
            def tempDir = tmpDirProvider.createDir("temp")
            def prefixHeaderFile = new File(tempDir, "prefix-headers.h")
    
            when:
            PCHUtils.generatePrefixHeaderFile(headers, prefixHeaderFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/DeprecatedConfigurationUsageIntegrationTest.groovy

            executer.expectDocumentedDeprecationWarning("The foo configuration has been deprecated for resolution. This will fail with an error in Gradle 9.0. Please resolve another configuration instead. For more information, please refer to...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 02:32:37 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithNewProtocolTest.groovy

            cleanup:
            lock?.close()
    
            where:
            lockMode << [Exclusive, Shared]
        }
    
        def "a lock has not been updated when locking an existing file that has been read by another process since last open"() {
            given:
            def lockManager = new DefaultFileLockManager(metaDataProvider, contentionHandler)
            writeFile(lockManager)
    
            and:
            def lock = createLock(lockMode)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. test/fixedbugs/issue54912.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that inlining a function literal that captures both a type
    // switch case variable and another local variable works correctly.
    
    package a
    
    func F(p *int, x any) func() {
    	switch x := x.(type) {
    	case int:
    		return func() {
    			*p += x
    		}
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:26:34 UTC 2022
    - 423 bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

        }
    
        def "can wire the output file of a task as input to another task using property"() {
            buildFile """
                class FileOutputTask extends DefaultTask {
                    @InputFile
                    final RegularFileProperty inputFile = project.objects.fileProperty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            blockingHttpServer.expectConcurrent("taskAction3")
    
            expect:
            args("--max-workers=3")
            succeeds("parallelWorkTask")
        }
    
        def "starts dependent task in another project as soon as submitted work for current task is complete (with --parallel)"() {
            given:
            createDirs("childProject")
            settingsFile << """
                include ':childProject'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

    import spock.lang.Issue
    
    class DestroyerTaskCommandLineOrderIntegrationTest extends AbstractCommandLineOrderTaskIntegrationTest {
        def "destroyer task with a dependency in another project will run before producer tasks when ordered first (type: #type)"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
Back to top