- Sort Score
 - Result 10 results
 - Languages All
 
Results 1501 - 1510 of 2,937 for rint (0.02 sec)
- 
				
				
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) - 
				
				
android/guava/src/com/google/common/io/LineReader.java
while (lines.peek() == null) { Java8Compatibility.clear(cbuf); // The default implementation of Reader#read(CharBuffer) allocates a // temporary char[], so we call Reader#read(char[], int, int) instead. int read = (reader != null) ? reader.read(buf, 0, buf.length) : readable.read(cbuf); if (read == -1) { lineBuf.finish(); break; } lineBuf.add(buf, 0, read); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 3K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/core/misc/Pair.java
this.second = second; } @Override public String toString() { return "{" + first + ", " + second + "}"; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((first == null) ? 0 : first.hashCode()); result = prime * result + ((second == null) ? 0 : second.hashCode()); return result; }Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.5K bytes - Viewed (0) - 
				
				
src/test/java/org/codelibs/core/log/LoggerTest.java
@Test public void testPerformance() throws Exception { final int num = 100; long start = System.currentTimeMillis(); for (int i = 0; i < num; i++) { System.out.println("test" + i); } final long sysout = System.currentTimeMillis() - start; start = System.currentTimeMillis(); for (int i = 0; i < num; i++) { logger.fatal("test" + i); }Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.8K bytes - Viewed (0) - 
				
				
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
throw new RuntimeException(uee.getMessage()); } } static byte[] computeResponse(final byte[] responseKey, final byte[] serverChallenge, final byte[] clientData, final int offset, final int length) { final HMACT64 hmac = new HMACT64(responseKey); hmac.update(serverChallenge); hmac.update(clientData, offset, length); final byte[] mac = hmac.digest();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) - 
				
				
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
final List<E> elements; int modCount = 0; PickyIterable(E... elements) { this.elements = new ArrayList<E>(asList(elements)); } @Override public Iterator<E> iterator() { return new PickyIterator(); } final class PickyIterator implements Iterator<E> { int expectedModCount = modCount; int index = 0; boolean canRemove;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0) - 
				
				
callbacks/helper_test.go
"name": "my name", }, expect: clause.Values{ Columns: []clause.Column{{Name: "name"}}, Values: [][]interface{}{{"my name"}}, }, }, { name: "Test convert int value", input: map[string]interface{}{ "age": 18, }, expect: clause.Values{ Columns: []clause.Column{{Name: "age"}}, Values: [][]interface{}{{18}}, }, }, {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Mar 05 02:22:57 UTC 2024 - 3.4K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java
protected final long tookMs; /** * The list of popular words. */ protected final List<String> words; /** * The number of popular words. */ protected final int num; /** * The total number of words. */ protected final long total; /** * The list of suggested items. */ protected final List<SuggestItem> items; /**Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 3.1K bytes - Viewed (0) - 
				
				
android/guava-tests/test/com/google/common/io/CharSourceTest.java
for (CharSource in : BROKEN_SOURCES) { int suppressed = runSuppressionFailureTest(in, newNormalCharSink()); assertEquals(0, suppressed); suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK); assertEquals((in == BROKEN_OPEN_SOURCE) ? 0 : 1, suppressed); } for (CharSink out : BROKEN_SINKS) { int suppressed = runSuppressionFailureTest(newNormalCharSource(), out);Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 11.5K bytes - Viewed (0) - 
				
				
cmd/data-scanner-metric.go
} } } // time n scanner actions. // Use for s < scannerMetricLastRealtime func (p *scannerMetrics) timeN(s scannerMetric) func(n int) func() { startTime := time.Now() return func(n int) func() { return func() { duration := time.Since(startTime) atomic.AddUint64(&p.operations[s], uint64(n)) if s < scannerMetricLastRealtime { p.latency[s].add(duration)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 9.4K bytes - Viewed (0)