- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 377 for 01 (0.01 sec)
-
android/guava-tests/test/com/google/common/base/JoinerTest.java
checkResult(J, OVERREPORTING_SIZE_LIST, "1-2-3"); checkResult(zeroForNull, iterableNull, "0"); checkResult(zeroForNull, iterableNullNull, "0-0"); checkResult(zeroForNull, iterableNull1, "0-1"); checkResult(zeroForNull, iterable1Null, "1-0"); checkResult(zeroForNull, iterable1Null2, "1-0-2"); checkResult(zeroForNull, iterableFourNulls, "0-0-0-0"); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
*/ @GwtIncompatible // java.nio.charset.Charset private static void testBytes(int numBytes, long expectedCount) { testBytes(numBytes, expectedCount, 0, -1); } /** * Helper to run the loop to test all the permutations for the number of bytes specified. This * overload is useful for debugging to get the loop to start at a certain character. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
*/ public ConfigType getConfigType(final String configId) { if (configId == null || configId.length() < 2) { return null; } final String configType = configId.substring(0, 1); if (ConfigType.WEB.getTypePrefix().equals(configType)) { return ConfigType.WEB; } if (ConfigType.FILE.getTypePrefix().equals(configType)) { return ConfigType.FILE;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/webapp/js/jquery-3.7.1.min.js
n=t&&t.parentNode;return e===n||!(!n||1!==n.nodeType||!(e.contains?e.contains(n):e.compareDocumentPosition&&16&e.compareDocumentPosition(n)))};var f=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;function p(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e}ce.escapeSelector=function(e){return(e+"").replace(f,p)};var ye=C,me=s;!function(){var e,b,w,o,a,T,r,C,d,i,k=me,S=ce.expando,E=0,n=0,s=W(),c=W(),u=W(),h=W(),l=function(e,t){return e===t&&(a=!0...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 85.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Suppliers.java
nanos = now + durationNanos; // In the very unlikely event that nanos is 0, set it to 1; // no one will notice 1 ns of tardiness. expirationNanos = (nanos == 0) ? 1 : nanos; return t; } } } // This is safe because we checked `expirationNanos`. return uncheckedCastNullableTToT(value); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
System.arraycopy("BNODE ".getBytes("US-ASCII"), 0, src, srcIndex + 1, 16); src[srcIndex + 16] = 0x00; src[srcIndex + 17] = 0x04; // 00000100 - B-node, active // P-node (01) System.arraycopy("PNODE ".getBytes("US-ASCII"), 0, src, srcIndex + 19, 16); src[srcIndex + 34] = 0x00; src[srcIndex + 35] = 0x24; // 00100100 - P-node, active // M-node (10)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
docs/em/docs/async.md
โ๏ธ โน ๐ *๐ ๏ธ* & *๐* ๐. ๐ ๐บ, ๐ ๐ ๐ ๐ ๐: ### ๐ ๏ธ ๐ ๐ ๐ถ โฎ๏ธ ๐ ๐ฅฐ ๐ค โฉ ๐ฅ, ๐ ๐ง โธ โช ๐ง โ โ โช๏ธโก๏ธ ๐ซ๐ซ ๐ช ๐. ๐ถ <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration"> โคด๏ธ โซ๏ธ ๐ ๐, ๐ ๐ฅ ๐ โ 2๏ธโฃ ๐ถ ๐ ๐ ๐ ๐ฅฐ & ๐. ๐ถ ๐ถ <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 18.6K bytes - Viewed (0) -
CHANGELOG.md
Access Framework. * Upgrade: [Kotlin 1.5.31][kotlin_1_5_31]. * Upgrade: [Okio 3.0.0][okio_3_0_0]. ## Version 5.0.0-alpha.2 _2021-01-30_ **In this release MockWebServer has a new Maven coordinate and package name.** A longstanding problem with MockWebServer has been its API dependency on JUnit 4. We've reorganized things to
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
cmd/metrics-v3-types.go
} labelMap[labels[i]] = labels[i+1] } if len(labels)/2 != len(validLabels) { panic("not all labels were given values") } v, ok := m.values[name] if !ok { v = make([]metricValue, 0, 1) } // If valid non zero value set the metrics if value > 0 { m.values[name] = append(v, metricValue{ Labels: labelMap, Value: value, }) } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Feb 28 19:33:08 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java
if (entity instanceof EsAbstractEntity) { ((EsAbstractEntity) entity).asDocMeta().id(itemResponse.getId()); } results[i] = itemResponse.isFailed() ? 0 : 1; } return results; } // to suppress xacceptUpdateColumnModifiedPropertiesIfNeeds()'s specify process @Override protected UpdateOption<CB> createPlainUpdateOption() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0)