Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,420 for wren (0.29 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. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/when.txt

    expression: WHEN
    text: when(b) {
            true -> 5
            else -> 0
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 101 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/when.kt

    fun test(b: Boolean) {
        <expr>when(b) {
            true -> 5
            else -> 0
        }</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 93 bytes
    - Viewed (0)
  4. releasenotes/notes/wait-when-distribution-tracing-disabled.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 17 03:43:40 UTC 2023
    - 212 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tests/integration/security/testdata/authz/conditions.yaml.tmpl

            paths: [ "/destination-ip-good" ]
        when:
        - key: destination.ip
          values: {{ .To.MustWorkloads.Addresses | toJson }}
      - to:
        - operation:
            paths: [ "/destination-ip-bad" ]
        when:
        - key: destination.ip
          values: [ "1.2.3.4" ]
      - to:
          - operation:
              paths: [ "/destination-ip-notValues" ]
        when:
          - key: destination.ip
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/SortedSetElementSourceTest.groovy

            source.add("fizz")
    
            when:
            def iterator = source.iteratorNoFlush()
            iterator.remove()
    
            then:
            thrown(IllegalStateException)
    
            when:
            def next = iterator.next()
    
            then:
            next == "fizz"
    
            when:
            iterator.remove()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:14 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top