Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 496 for clocks (0.46 sec)

  1. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestFrameworkTest.groovy

    import org.gradle.api.tasks.testing.Test
    import org.gradle.api.tasks.testing.testng.TestNGOptions
    import org.gradle.internal.actor.ActorFactory
    import org.gradle.internal.id.IdGenerator
    import org.gradle.internal.time.Clock
    import org.gradle.testfixtures.ProjectBuilder
    import org.gradle.util.TestUtil
    import spock.lang.Shared
    import spock.lang.Specification
    
    public class TestNGTestFrameworkTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

                synchronized (lock) {
                    receiveQueue << message
                    lock.notifyAll()
                }
            }
    
            void queueBroken(Throwable failure = new RuntimeException()) {
                queueIncoming(new Failure(failure))
            }
    
            Message receive() {
                synchronized (lock) {
                    while (receiveQueue.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	// insert resched checks adds new blocks containing generic instructions
    	{"insert resched checks", "lower"},
    	{"insert resched checks", "tighten"},
    
    	// prove relies on common-subexpression elimination for maximum benefits.
    	{"generic cse", "prove"},
    	// deadcode after prove to eliminate all new dead blocks.
    	{"prove", "generic deadcode"},
    	// common-subexpression before dead-store elim, so that we recognize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/runtime/os_windows.go

    	// Serialize thread suspension. SuspendThread is asynchronous,
    	// so it's otherwise possible for two threads to suspend each
    	// other and deadlock. We must hold this lock until after
    	// GetThreadContext, since that blocks until the thread is
    	// actually suspended.
    	lock(&suspendLock)
    
    	// Suspend the thread.
    	if int32(stdcall1(_SuspendThread, thread)) == -1 {
    		unlock(&suspendLock)
    		stdcall1(_CloseHandle, thread)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    		orphanQueue:           workqueue.NewTypedRateLimitingQueueWithConfig(workqueue.NewTypedItemExponentialFailureRateLimiter[string](DefaultJobApiBackOff, MaxJobApiBackOff), workqueue.TypedRateLimitingQueueConfig[string]{Name: "job_orphan_pod", Clock: clock}),
    		broadcaster:           eventBroadcaster,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Nlink   uint64
    	Mode    uint32
    	Uid     uint32
    	Gid     uint32
    	_       int32
    	Rdev    uint64
    	Size    int64
    	Atim    Timespec
    	Mtim    Timespec
    	Ctim    Timespec
    	Blksize int64
    	Blocks  int64
    	_       [3]int64
    }
    
    type Stat_LE_t struct {
    	_            [4]byte // eye catcher
    	Length       uint16
    	Version      uint16
    	Mode         int32
    	Ino          uint32
    	Dev          uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    /**
     * Universal APIs that are available for all {@code dependencies} blocks.
     *
     * @apiNote This interface is intended to be used to mix-in DSL methods for {@code dependencies} blocks.
     * @implSpec The default implementation of all methods should not be overridden.
     * @implNote Changes to this interface may require changes to the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/SuiteTestClassProcessorTest.groovy

    import org.gradle.internal.time.Clock
    import spock.lang.Specification
    
    class SuiteTestClassProcessorTest extends Specification {
        private final TestResultProcessor resultProcessor = Mock()
        private final TestClassProcessor targetProcessor = Mock()
        private final TestDescriptorInternal suiteDescriptor = Mock()
        private final TestClassRunInfo testClass = Mock()
        private final Clock timeProvider = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pkg/kubelet/logs/container_log_manager.go

    	}
    	return maxSize, nil
    }
    
    type containerLogManager struct {
    	runtimeService   internalapi.RuntimeService
    	osInterface      kubecontainer.OSInterface
    	policy           LogRotatePolicy
    	clock            clock.Clock
    	mutex            sync.Mutex
    	queue            workqueue.TypedRateLimitingInterface[string]
    	maxWorkers       int
    	monitoringPeriod metav1.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/runtime/cpuprof.go

    	lock(&cpuprof.lock)
    	log := cpuprof.log
    	unlock(&cpuprof.lock)
    	readMode := profBufBlocking
    	if GOOS == "darwin" || GOOS == "ios" {
    		readMode = profBufNonBlocking // For #61768; on Darwin notes are not async-signal-safe.  See sigNoteSetup in os_darwin.go.
    	}
    	data, tags, eof := log.read(readMode)
    	if len(data) == 0 && eof {
    		lock(&cpuprof.lock)
    		cpuprof.log = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top