Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 170 for timeEnd (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            failure.assertHasCause("Could not GET '${mavenHttpRepo.uri.toString()}/${group}/${module}/maven-metadata.xml'.")
            failure.assertHasCause("Read timed out")
        }
    
        private void assertDependencyListingInternalServerError(String group, String module, String version) {
            failure.assertHasCause("Could not resolve ${group}:${module}:${version}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/conntest.go

    		}
    		checkForTimeoutError(t, err)
    		if len(deadlineSet) == 0 {
    			t.Error("Read timed out before deadline is set")
    		}
    	}()
    	go func() {
    		defer wg.Done()
    		var err error
    		for err == nil {
    			_, err = c1.Write(make([]byte, 1024))
    		}
    		checkForTimeoutError(t, err)
    		if len(deadlineSet) == 0 {
    			t.Error("Write timed out before deadline is set")
    		}
    	}()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    			}
    			// This call can have different handlers, but the default chain rate limits. Call it after the metrics are updated
    			// in case the rate limit delays it.  If you outrun the rate for this one timed out requests, something has gone
    			// seriously wrong with your server, but generally having a logging signal for timeouts is useful.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

            val testFileText = FileUtil.loadFile(File(filePath))
            val fileTextWithoutSymbolsData = testFileText.substringBeforeLast(SYMBOLS_TAG).trimEnd()
            appendLine(fileTextWithoutSymbolsData)
            appendLine()
            appendLine(SYMBOLS_TAG)
            append(rendered)
        }
    
        private const val SYMBOLS_TAG = "// SYMBOLS:"
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/MoreExecutors.java

          ListeningExecutorService executorService,
          Collection<? extends Callable<T>> tasks,
          boolean timed,
          Duration timeout)
          throws InterruptedException, ExecutionException, TimeoutException {
        return invokeAnyImpl(
            executorService, tasks, timed, toNanosSaturated(timeout), TimeUnit.NANOSECONDS);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    				if plugin.SocketPath == socketPath && plugin.Timestamp.After(previousTimestamp) {
    					return true, nil
    				}
    			}
    			return false, nil
    		},
    	)
    	if err != nil {
    		t.Fatalf("Timed out waiting for plugin to be registered:\n%s.", socketPath)
    	}
    }
    
    func waitForUnregistration(
    	t *testing.T,
    	socketPath string,
    	asw cache.ActualStateOfWorld) {
    	err := retryWithExponentialBackOff(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. src/context/x_test.go

    			n := runtime.Stack(buf, true)
    			t.Fatalf("timed out after %v waiting for <-ctx.Done(); stacks:\n%s", d, buf[:n])
    		}
    	}
    	// Wait for all the cancel functions to return.
    	done := make(chan struct{})
    	go func() {
    		wg.Wait()
    		close(done)
    	}()
    	select {
    	case <-done:
    	case <-stuck:
    		buf := make([]byte, 10<<10)
    		n := runtime.Stack(buf, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_ppc64x.s

    	MOVD	sevp+8(FP), R4
    	MOVD	timerid+16(FP), R5
    	SYSCALL	$SYS_timer_create
    	MOVW	R3, ret+24(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-28
    	MOVW	timerid+0(FP), R3
    	MOVW	flags+4(FP), R4
    	MOVD	new+8(FP), R5
    	MOVD	old+16(FP), R6
    	SYSCALL	$SYS_timer_settime
    	MOVW	R3, ret+24(FP)
    	RET
    
    TEXT runtime·timer_delete(SB),NOSPLIT,$0-12
    	MOVW	timerid+0(FP), R3
    	SYSCALL	$SYS_timer_delete
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //     }
    
      public static long SHORT_DELAY_MS;
      public static long SMALL_DELAY_MS;
      public static long MEDIUM_DELAY_MS;
      public static long LONG_DELAY_MS;
    
      /**
       * Returns the shortest timed delay. This could be reimplemented to use for example a Property.
       */
      protected long getShortDelay() {
        return 50;
      }
    
      /** Sets delays as multiples of SHORT_DELAY. */
      protected void setDelays() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //     }
    
      public static long SHORT_DELAY_MS;
      public static long SMALL_DELAY_MS;
      public static long MEDIUM_DELAY_MS;
      public static long LONG_DELAY_MS;
    
      /**
       * Returns the shortest timed delay. This could be reimplemented to use for example a Property.
       */
      protected long getShortDelay() {
        return 50;
      }
    
      /** Sets delays as multiples of SHORT_DELAY. */
      protected void setDelays() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top