Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,921 for wren (0.19 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "regenerates manifest when Swift source files added or removed"() {
            given:
            swiftBuild()
    
            when:
            run("generateSwiftPmManifest")
    
            then:
            result.assertTaskSkipped(":generateSwiftPmManifest")
    
            when:
            file("app/src/main/swift/dir/app.swift") << "// app"
            run("generateSwiftPmManifest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "visual studio tasks re-execute when source files are added"() {
            app.writeSources(file("src/main"))
    
            when:
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("app")
    
            when:
            copyFile(file("src/main/cpp/main.cpp"), file("src/main/cpp/foo.cpp"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top