- Sort Score
- Result 10 results
- Languages All
Results 441 - 450 of 518 for setValue (0.07 sec)
-
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java
if (versionConstraint.containsVersion(ver)) { versions.add(ver); result.setRepository(ver, v.getValue()); } } catch (InvalidVersionSpecificationException e) { result.addException(e); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 11.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
Map<String, org.apache.maven.api.services.ToolchainFactory> allFactories = new HashMap<>(); for (Map.Entry<String, ToolchainFactory> entry : v3Factories.entrySet()) { ToolchainFactory v3Factory = entry.getValue(); allFactories.put(entry.getKey(), new org.apache.maven.api.services.ToolchainFactory() { @Nonnull @Override public org.apache.maven.api.Toolchain createToolchain(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 31 10:58:52 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
if (cookies != null) { for (final Cookie cookie : cookies) { if (cookieKey.equals(cookie.getName())) { final String value = cookie.getValue(); if (logger.isDebugEnabled()) { logger.debug("{}:{}", cookieKey, value); } if (StringUtil.isNotEmpty(value)) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
for (Table.Cell<String, SecretKey, HashFunction> cell : ALGORITHMS.cellSet()) { String algorithm = cell.getRowKey(); SecretKey key = cell.getColumnKey(); HashFunction hashFunc = cell.getValue(); assertMacHashing(HashTestUtils.ascii(stringToTest), algorithm, key, hashFunc); } } } @AndroidIncompatible // sun.security public void testNoProviders() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 16:19:35 UTC 2024 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SpnegoContextTest.java
ArgumentCaptor<byte[]> cap = ArgumentCaptor.forClass(byte[].class); verify(this.mechContext, times(1)).initSecContext(cap.capture(), eq(0), eq(0)); assertEquals(0, cap.getValue().length, "Optimistic token must be zero-length"); } @ParameterizedTest @ValueSource(bytes = { 0x00, 0x7F, (byte) 0xFF }) @DisplayName("initSecContext throws on invalid token type")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final Set<String> doubleFieldSet = getIndexAdminDoubleFieldSet(); return source.entrySet().stream().filter(e -> isNonEmptyValue(e.getValue())).map(e -> { final String key = e.getKey(); Object value = e.getValue(); if (arrayFieldSet.contains(key)) { if (value instanceof String[]) { value = Arrays.stream((String[]) value).toList();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
if (size() > maxHandles) { // Release least recently used non-persistent handle if (eldest.getValue().type != HandleType.PERSISTENT) { releaseHandle(eldest.getValue()); return true; } } return false; } }; } } ```
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
} int cleaned = 0; long now = System.currentTimeMillis(); for (Map.Entry<String, ResourceHolder> entry : activeResources.entrySet()) { ResourceHolder holder = entry.getValue(); // Check if resource is abandoned if (!holder.closed && !holder.isAlive()) { // Resource object has been garbage collected but not closed reportLeak(holder);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java
sortedEntries.sort(Map.Entry.comparingByKey(String.CASE_INSENSITIVE_ORDER)); for (Map.Entry<String, PluginValidationIssues> entry : sortedEntries) { PluginValidationIssues issues = entry.getValue(); if (!hasAnythingToReport(issues, issueLocalitiesToReport)) { continue; } logger.warn(" * {}", entry.getKey());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:32 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
if (!matchedLabelSet.isEmpty()) { final Set<String> newLabelSet = new HashSet<>(); final String[] oldLabels = DocumentUtil.getValue(dataMap, fessConfig.getIndexFieldLabel(), String[].class); StreamUtil.stream(oldLabels).of(stream -> stream.forEach(newLabelSet::add)); matchedLabelSet.stream().forEach(newLabelSet::add);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0)