Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,908 for wren (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/WithSideEffectProviderTest.groovy

            provider.calculateExecutionTimeValue()
    
            then:
            0 * _ // no side effects when values are not unpacked
    
            when:
            counter.set(23)
            def unpackedValue = getter(provider, method, 88)
            then:
            unpackedValue == 23
            1 * sideEffect.execute(23)
    
            when:
            unpackedValue = getter(provider, method, 88)
            then:
            unpackedValue == 24
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        def "out-of-date when any input file changes"() {
            given:
            execute(unitOfWork)
    
            when:
            inputFile.write("some new content")
    
            then:
            outOfDate(unitOfWork, inputFilesChanged(file: [inputFile]))
        }
    
        def "out-of-date when any input file type changes"() {
            given:
            execute(unitOfWork)
    
            when:
            inputFile.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            locationsUpdatedByCurrentBuild,
            watchableFileSystemDetector,
            fileChangeListeners
        )
    
        def "invalidates the virtual file system before and after the build when watching is disabled"() {
            when:
            watchingVirtualFileSystem.updateRootUnderLock { root -> nonEmptySnapshotHierarchy }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top