Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for FooTest (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            possibleFileLocations.put(writeJavaCausingTwoCompilationWarnings("Foo").absolutePath, 2)
            // The test source set will cause errors
            possibleFileLocations.put(writeJavaCausingTwoCompilationErrors("FooTest", "test").absolutePath, 2)
    
            when:
            // Special flag to fork the compiler, see the setup()
            fails("compileTestJava")
    
            then:
            verifyAll(receivedProblem(0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       * semantics of builder can be arbitrarily complex. Still, a factory class can be created in the
       * test to facilitate equality testing. For example:
       *
       * <pre>
       * public class FooTest {
       *
       *   private static class FooFactoryForTest {
       *     public static Foo create(String a, String b, int c, boolean d) {
       *       return Foo.builder()
       *           .setA(a)
       *           .setB(b)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

       * semantics of builder can be arbitrarily complex. Still, a factory class can be created in the
       * test to facilitate equality testing. For example:
       *
       * <pre>
       * public class FooTest {
       *
       *   private static class FooFactoryForTest {
       *     public static Foo create(String a, String b, int c, boolean d) {
       *       return Foo.builder()
       *           .setA(a)
       *           .setB(b)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. pkg/queue/delay.go

    type delayTask struct {
    	do      func() error
    	runAt   time.Time
    	retries int
    }
    
    const maxTaskRetry = 3
    
    var _ heap.Interface = &pq{}
    
    // pq implements an internal priority queue so that tasks with the soonest expiry will be run first.
    // Methods on pq are not threadsafe, access should be protected.
    // much of this is taken from the example at https://golang.org/pkg/container/heap/
    type pq []*delayTask
    
    func (q pq) Len() int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

          eachQueue@ for (queue in readyQueues) {
            val candidate = queue.futureTasks[0]
            val candidateDelay = maxOf(0L, candidate.nextExecuteNanoTime - now)
    
            when {
              // Compute the delay of the soonest-executable task.
              candidateDelay > 0L -> {
                minDelayNanos = minOf(candidateDelay, minDelayNanos)
                continue@eachQueue
              }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. pkg/util/async/bounded_frequency_runner.go

    	retryTime := bfr.timer.Now().Add(interval)
    
    	// We can't just write retryTime to a channel because there could be multiple
    	// RetryAfter calls before Loop gets a chance to read from the channel. So we
    	// record the soonest requested retry time in bfr.retryTime and then only signal
    	// the Loop thread once, just like Run does.
    	bfr.retryMu.Lock()
    	defer bfr.retryMu.Unlock()
    	if !bfr.retryTime.IsZero() && bfr.retryTime.Before(retryTime) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  7. src/testdata/Isaac.Newton-Opticks.txt

    inclined more and more to the common Surface of the Glass and Air,
    begins at length to be totally reflected by that Surface; those sorts of
    Rays which at like Incidences are reflected most copiously, or by
    inclining the Rays begin soonest to be totally reflected, are most
    reflexible.
    
    
    DEFIN. IV.
    
    _The Angle of Incidence is that Angle, which the Line described by the
    incident Ray contains with the Perpendicular to the reflecting or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Air, and by being inclined more and more to the common Surface of the Glass and Air, begins at length to be totally reflected by that Surface; those sorts of Rays which at like Incidences are reflected most copiously, or by inclining the Rays begin soonest to be totally reflected, are most reflexible. DEFIN. IV. _The Angle of Incidence is that Angle, which the Line described by the incident Ray contains with the Perpendicular to the reflecting or refracting Surface at the Point of Incidence._ DEFIN....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    //   immediately ready and must run on some thread eventually.
    // * New/modified-earlier timer: The current timer implementation (see time.go)
    //   uses netpoll in a thread with no work available to wait for the soonest
    //   timer. If there is no thread waiting, we want a new spinning thread to go
    //   wait.
    // * Idle-priority GC: The GC wakes a stopped idle thread to contribute to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top