- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 1,419 for System (0.16 sec)
-
guava/src/com/google/common/util/concurrent/Uninterruptibles.java
long remainingNanos = unit.toNanos(timeout); long end = System.nanoTime() + remainingNanos; while (true) { try { // CountDownLatch treats negative timeouts just like zero. return latch.await(remainingNanos, NANOSECONDS); } catch (InterruptedException e) { interrupted = true; remainingNanos = end - System.nanoTime(); } } } finally {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 19.1K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/base/StringsRepeatBenchmark.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Sep 17 20:24:24 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
try { parser.parseArgument(args); } catch (final CmdLineException e) { System.err.println(e.getMessage()); System.err.println("java " + ThumbnailGenerator.class.getCanonicalName() + " [options...] arguments..."); parser.printUsage(System.err); return; } if (logger.isDebugEnabled()) { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
String ver, pkgs; ver = System.getProperty( "java.version" ); if( ver.startsWith( "1.1." ) || ver.startsWith( "1.2." )) { throw new RuntimeException( "jcifs.smb1-0.7.0b4+ requires Java 1.3 or above. You are running " + ver ); } pkgs = System.getProperty( "java.protocol.handler.pkgs" ); if( pkgs == null ) { System.setProperty( "java.protocol.handler.pkgs", "jcifs.smb1" );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TestLocking.java
// System.out.print('l'); } else if (r < 1.0) { InputStream in = f.getInputStream(); while (in.read(buf) > 0) { // System.out.print('r'); } in.close(); } } catch (IOException ioe) { System.err.println(ioe.getMessage());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.4K bytes - Viewed (0) -
istioctl/pkg/util/handlers/handlers_test.go
namespace: "kube-system", wantPodName: "istio-ingressgateway-8d9697654-qdzgh", wantNamespace: "kube-system", }, { proxyName: "istio-security-post-install-1.2.2-bm9w2.istio-system", namespace: "istio-system", wantPodName: "istio-security-post-install-1.2.2-bm9w2", wantNamespace: "istio-system", }, { proxyName: "istio-security-post-install-1.2.2-bm9w2.istio-system", namespace: "",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 09 18:17:49 UTC 2023 - 6.6K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck_test.go
cli := kube.NewFakeClient() messages := diag.Messages{} zipkinSvc := &corev1.Service{ ObjectMeta: metav1.ObjectMeta{ Name: "zipkin", Namespace: "istio-system", }, } cli.Kube().CoreV1().Services("istio-system").Create(context.Background(), zipkinSvc, metav1.CreateOptions{}) err := checkTracing(cli, &messages) assert.NoError(t, err) assert.Equal(t, 1, len(messages))
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 09 12:01:22 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/config/README.md
``` > NOTE: if you set any of the following sub-system configuration using ENVs, dynamic behavior is not supported. ### Usage scanner
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 17.9K bytes - Viewed (1) -
src/main/resources/fess_label_en.properties
labels.crawling_info_WebFsCrawlExecTime=Crawl exec time (Web/File system) labels.crawling_info_WebFsCrawlStartTime=Crawl start time (Web/File system) labels.crawling_info_WebFsCrawlEndTime=Crawl end time (Web/File system) labels.crawling_info_WebFsIndexExecTime=Indexing exec time (Web/File system) labels.crawling_info_WebFsIndexSize=Index size (Web/File system) labels.crawling_info_DataCrawlExecTime=Crawl exec time (Data store)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java
final List<String> list = newArrayList(); list.add("aaa"); list.add("bbb"); list.add("ccc"); for (final Indexed<String> indexed : indexed(list)) { System.out.println(indexed.getIndex()); System.out.println(indexed.getElement()); } } /** * @throws Exception */ @Test public void testForEachLineIterator() throws Exception {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0)