Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,736 for doens (0.07 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/versions/ReleasedVersionDistributionsTest.groovy

            versions.all*.version == versions.all*.version.sort().reverse()
        }
    
        def "get most recent final does that"() {
            when:
            props.mostRecent = "1.2"
    
            then:
            versions().mostRecentRelease.version == version("1.2")
        }
    
        def "get most recent snapshot does that"() {
            when:
            props.mostRecentSnapshot = "2.5-20150413220018+0000"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. cmd/typed-errors.go

    // error returned when temporary account is not found
    var errNoSuchTempAccount = errors.New("Specified temporary account does not exist")
    
    // error returned in IAM subsystem when an account doesn't exist.
    var errNoSuchAccount = errors.New("Specified account does not exist")
    
    // error returned in IAM subsystem when groups doesn't exist.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

     */
    @ServiceScope(Scope.CrossBuildSession.class)
    public interface ListenerBuildOperationDecorator {
    
        /**
         * Decorates an action listener.
         * <p>
         * Does not decorate any action that implements {@link InternalListener}.
         * Does not decorate if there is not currently a script or plugin being applied on the thread.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanAutoApplyIntegrationTest.groovy

            then:
            pluginAppliedOnce()
        }
    
        def "does not automatically apply plugin when --scan is not provided on command-line"() {
            when:
            runBuildWithoutScanRequest()
    
            then:
            pluginNotApplied()
        }
    
        def "does not automatically apply plugin to subprojects"() {
            when:
            createDirs("a", "b")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/SingleUseDaemonIntegrationTest.groovy

            and:
            daemons.daemon.stops()
        }
    
        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
        def "forks build with default daemon JVM args when java home from gradle properties does not match current process"() {
            def javaHome = AvailableJavaHomes.differentJdk.javaHome.canonicalFile
    
            file('gradle.properties').writeProperties("org.gradle.java.home": javaHome.path)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. src/runtime/crash_test.go

    		// information about the current SP and stack bounds
    		"runtime: sp=",
    		"stack=[",
    	}
    	if !strings.HasPrefix(output, want[0]) {
    		t.Errorf("output does not start with %q", want[0])
    	}
    	for _, s := range want[1:] {
    		if !strings.Contains(output, s) {
    			t.Errorf("output does not contain %q", s)
    		}
    	}
    	if t.Failed() {
    		t.Logf("output:\n%s", output)
    	}
    }
    
    func TestThreadExhaustion(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

            expect:
            store.toString() == "<display> ($cacheDir)"
        }
    
        def "open creates directory if it does not exist"() {
            given:
            cacheDir.assertDoesNotExist()
    
            when:
            store.open()
    
            then:
            cacheDir.assertIsDir()
        }
    
        def "open does nothing when directory already exists"() {
            given:
            cacheDir.createDir()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

            then:
            failure.assertHasDescription("Directory '$testDirectory' does not contain a Gradle build.")
    
            def createdDirectories = testDirectory.list() as List
            createdDirectories.empty || createdDirectories == [".gradle"]
            assertNoProjectCaches(gradleUserHomeDir)
        }
    
        def "does not delete an existing .gradle directory"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DeferredConfigurationCrossVersionSpec.groovy

        final String prefix = "-> configure"
        final String settingsMessage = "$prefix settings"
        final String rootProjectMessage = "$prefix root project"
    
        def "does not configure build when action does not query any models"() {
            setupBuild()
    
            when:
            def model = withConnection {
                def executer = action(new NoOpAction())
                collectOutputs(executer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ArtifactCacheUnusedEntryCleanupIntegrationTest.groovy

        def snapshotModule = mavenHttpRepo.module('org.example', 'example', '1.0-SNAPSHOT').publish().allowAll()
    
        def setup() {
            requireOwnGradleUserHomeDir("test requires its own journal")
        }
    
        def "does not clean up resources and files that were recently used from caches"() {
            given:
            buildscriptWithDependency(snapshotModule)
    
            when:
            succeeds 'resolve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:06:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top