Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,949 for wren (0.08 sec)

  1. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "wing",
            "ring",
            "desk",
            "yak",
            "teaching",
            "street",
            "cattle",
            "sun",
            "wealth",
            "cabbage",
            "playground",
            "wren",
            "flowers",
            "cobweb",
            "shame",
            "plate",
            "authority",
            "cave",
            "floor",
            "shelf",
            "snakes",
            "ants",
            "comparison",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

            0 * listener._
    
            when:
            result = Instrumented.systemProperty("not-set", "consumer")
    
            then:
            result == null
            1 * listener.systemPropertyQueried("not-set", null, "consumer")
            0 * listener._
        }
    
        def "notifies listener when default value for system property is used"() {
            def listener = withInstrumentedInputsListener()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/events.go

    )
    
    const (
    	// PodAdd is the event when a new pod is added to API server.
    	PodAdd = "PodAdd"
    	// ScheduleAttemptFailure is the event when a schedule attempt fails.
    	ScheduleAttemptFailure = "ScheduleAttemptFailure"
    	// BackoffComplete is the event when a pod finishes backoff.
    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            when:
            startForegroundDaemon()
    
            then:
            idle()
    
            when:
            startBuild()
            waitForBuildToWait()
    
            then:
            busy()
        }
    
        def "a new daemon is started if all existing are busy"() {
            when:
            startBuild()
    
            then:
            busy()
    
            when:
            startBuild()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            when:
            source.add("a")
            source.add("b")
            source.remove("a")
    
            then:
            source.iterator().collect() == ["b"]
    
            when:
            source.add("a")
    
            then:
            source.iterator().collect() == ["b", "a"]
        }
    
        def "can re-add an ordinary value after clear"() {
            when:
            source.add("a")
            source.add("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/typed-errors.go

    // error returned in IAM subsystem when user doesn't exist.
    var errNoSuchUser = errors.New("Specified user does not exist")
    
    // error returned by IAM when a use a builtin IDP command when they could mean
    // to use a LDAP command.
    var errNoSuchUserLDAPWarn = errors.New("Specified user does not exist. If you meant a user in LDAP please use command under `mc idp ldap`")
    
    // error returned when service account is not found
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/ListenerBroadcastTest.groovy

            expect:
            broadcast.type == TestListener
        }
    
        def 'source object does nothing when no listeners are added'() {
            expect:
            broadcast.source.event1("param")
        }
    
        def 'visit listeners does nothing when no listeners are added'() {
            def visitor = Mock(Action)
    
            when:
            broadcast.visitListeners(visitor)
    
            then:
            0 * visitor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

                apply plugin: 'java'
            """
        }
    
        def "can build when no source dir present"() {
            when:
            assert !file("src/main/java").exists()
    
            then:
            succeeds("build")
            skipped(":compileJava")
            executed(":build")
        }
    
        def "can build when source dir is removed"() {
            when:
            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoCachingIntegrationTest.groovy

                }
            """
            when:
            withBuildCache().run "jacocoTestReport"
            then:
            executedAndNotSkipped ":test", ":jacocoTestReport"
            reportFile.assertIsFile()
    
            when:
            succeeds "clean"
            then:
            reportFile.assertDoesNotExist()
    
            when:
            withBuildCache().run("integrationTest", "jacocoIntegrationTestReport")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractStyledTextOutputTest.groovy

        def onOutputWritesText() {
            when:
            output.onOutput('some message')
    
            then:
            output.value == 'some message'
        }
    
        def writesNullText() {
            when:
            output.text(null)
    
            then:
            output.value == 'null'
        }
    
        def writesEndOfLine() {
            when:
            output.println()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top