Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for wren (0.55 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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand17 = group('sun')
            def operand18 = moduleId('crib', 'wealth')
            def operand19 = moduleId('cabbage', 'playground')
            def operand20 = moduleId('wren', 'flowers')
            def operand21 = moduleId('insurance', 'cobweb')
            def operand22 = moduleId('crib', 'shame')
            def operand23 = moduleId('plate', 'authority')
            def operand24 = moduleId('stove', 'cave')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/netpoll.go

    	closing bool
    	rrun    bool      // whether rt is running
    	wrun    bool      // whether wt is running
    	user    uint32    // user settable cookie
    	rseq    uintptr   // protects from stale read timers
    	rt      timer     // read deadline timer
    	rd      int64     // read deadline (a nanotime in the future, -1 when expired)
    	wseq    uintptr   // protects from stale write timers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	}
    	wch := wc.watcher.client.Watch(wc.ctx, wc.key, opts...)
    	for wres := range wch {
    		if wres.Err() != nil {
    			err := wres.Err()
    			// If there is an error on server (e.g. compaction), the channel will return it before closed.
    			logWatchChannelErr(err)
    			wc.sendError(err)
    			return
    		}
    		if wres.IsProgressNotify() {
    			wc.sendEvent(progressNotifyEvent(wres.Header.GetRevision()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerTest.groovy

        }
    
        def "isTraceEnabled returns false when level is #level"() {
            when:
            globalLevel = level
    
            then:
            !logger().traceEnabled
            !logger().isTraceEnabled(null)
    
            where:
            level << LogLevel.values()
        }
    
        def "isDebugEnabled returns #enabled when level is #level"() {
            when:
            globalLevel = level
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "test relies on static state")
        def "refreshes when buildSrc changes"() {
            addIsCachedCheck()
            file("buildSrc/src/main/groovy/Foo.groovy") << "class Foo {}"
    
            when:
            run()
            run()
    
            then:
            isCached()
    
            when:
            file("buildSrc/src/main/groovy/Foo.groovy").text = "class Foo { static int x = 5; }"
            run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            when:
            collection.from = ["a", "b"]
            then:
            collection.from as List == [["a", "b"]]
        }
    
        def "can mutate the from collection"() {
            collection.from("src1", "src2")
            def from = collection.from
    
            when:
            from.clear()
    
            then:
            from.empty
            collection.from.empty
    
            when:
            def add1 = from.add('a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top