- Sort Score
- Result 10 results
- Languages All
Results 1381 - 1390 of 3,523 for During (0.05 sec)
-
tests/lru_test.go
func TestLRU_Values(t *testing.T) { lc := lru.NewLRU[string, string](3, nil, 0) lc.Add("key1", "val1") lc.Add("key2", "val2") lc.Add("key3", "val3") values := lc.Values() if !reflect.DeepEqual(values, []string{"val1", "val2", "val3"}) { t.Fatalf("values differs from expected") } } // func TestExpirableMultipleClose(_ *testing.T) { // lc :=lru.NewLRU[string, string](10, nil, 0) // lc.Close()
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Mon Sep 08 09:19:22 UTC 2025 - 10.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java
CacheLoader<String, String> computingFunction = new CacheLoader<String, String>() { @Override public String load(String key) throws InterruptedException { if (shouldWait.get()) { computingLatch.await(); } return key; } }; QueuingRemovalListener<String, String> listener = queuingRemovalListener();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 22:03:28 UTC 2025 - 25.4K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/configuration/internal/EnhancedCompositeBeanHelperTest.java
*/ public static class TestBean { private String name; private String directField; private List<String> items = new ArrayList<>(); public String getName() { return name; } public void setName(String name) { this.name = name; } public String getDirectField() { return directField; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 12 14:59:46 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java
} else if (o instanceof String) { final String s = (String) o; if (StringUtil.isEmpty(s)) { return null; } return normalize(new BigDecimal(s)); } else { return normalize(new BigDecimal(o.toString())); } } /** * Converts a {@link BigDecimal} to a string. * * @param dec
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailGenerator.java
* @param path The path to the source document. * @param docMap The document map containing metadata. * @return A tuple containing task information. */ Tuple3<String, String, String> createTask(String path, Map<String, Object> docMap);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
return new String(c); } /** * Converts a byte array to a hexadecimal string representation. * * @param src the source byte array to convert * @param srcIndex the starting index in the source array * @param size the number of characters in the resulting hex string * @return a hexadecimal string representation of the byte array */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/Collections2Test.java
private static Test testsForTransform() { return CollectionTestSuiteBuilder.using( new TestStringCollectionGenerator() { @Override public Collection<@Nullable String> create(@Nullable String[] elements) { List<@Nullable String> list = new ArrayList<>(); for (String element : elements) { list.add((element == null) ? null : "q" + element);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
private static final Logger logger = LogManager.getLogger(SmbClientTest.class); private static final String IMAGE_NAME = "dperson/samba:latest"; private SmbClient smbClient; private GenericContainer<?> sambaServer; private String baseUrl; private String host; private Integer port; @Override protected void setUp() throws Exception { super.setUp();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 31.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java
new TreeMap<>(new PhaseComparator(lifecycle.getPhases())); Map<String, String> aliases = lifecycle.getDelegate().aliases().stream() .collect(Collectors.toMap(a -> a.v3Phase(), a -> a.v4Phase())); if (aliases.containsKey(lifecyclePhase)) { lifecyclePhase = PhaseId.of(aliases.get(lifecyclePhase)).phase(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Dec 13 23:04:37 UTC 2024 - 8.5K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/MessageDigestHashFunction.java
private final String toString; MessageDigestHashFunction(String algorithmName, String toString) { this.prototype = getMessageDigest(algorithmName); this.bytes = prototype.getDigestLength(); this.toString = checkNotNull(toString); this.supportsClone = supportsClone(prototype); } MessageDigestHashFunction(String algorithmName, int bytes, String toString) {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.9K bytes - Viewed (0)