- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 1,252 for key9 (0.02 sec)
-
src/test/java/jcifs/internal/smb2/ioctl/SrvRequestResumeKeyResponseTest.java
byte[] resumeKey = response.getResumeKey(); assertNotNull(resumeKey, "Resume key should not be null"); assertEquals(24, resumeKey.length, "Resume key should be 24 bytes"); // Verify resume key content for (int i = 0; i < 24; i++) { assertEquals((byte) (i + 1), resumeKey[i], "Resume key byte " + i + " should match"); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextRequest.java
this.leaseState = 0; this.leaseFlags = 0; this.epoch = 1; } /** * Create a new lease V2 context request with specified parameters * * @param leaseKey the lease key * @param leaseState requested lease state * @param parentLeaseKey parent lease key (can be null for zero key) * @param epoch lease epoch */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 6.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingNavigableMapTest.java
public @Nullable Entry<K, V> lowerEntry(K key) { return standardLowerEntry(key); } @Override public @Nullable K lowerKey(K key) { return standardLowerKey(key); } @Override public @Nullable Entry<K, V> floorEntry(K key) { return standardFloorEntry(key); } @Override public @Nullable K floorKey(K key) { return standardFloorKey(key); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/MapIteratorCache.java
} @Nullable V get(Object key) { checkNotNull(key); V value = getIfCached(key); // TODO(b/192579700): Use a ternary once it no longer confuses our nullness checker. if (value == null) { return getWithoutCaching(key); } else { return value; } } final @Nullable V getWithoutCaching(Object key) { checkNotNull(key); return backingMap.get(key); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
* * @param key the property key to look up * @return the property value as an Object, or null if not found */ public static Object get(final String key) { return prp.get(key); } /** * Retrieve a <code>String</code>. If the key cannot be found, * the provided <code>def</code> default parameter will be returned. * * @param key the property key to look up
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/index.jsp
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title><la:message key="labels.search_title" /></title> <c:if test="${osddLink}"> <link rel="search" type="application/opensearchdescription+xml" href="${fe:url('/osdd')}" title="<la:message key="labels.index_osdd_title" />" /> </c:if> <link href="${fe:url('/css/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 7K bytes - Viewed (1) -
src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title><la:message key="labels.admin_brand_title"/> | <la:message key="labels.webauth_configuration"/></title> <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include> </head> <body class="hold-transition sidebar-mini"> <div class="wrapper">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
} /** * Get a key match. * * @param id The ID of the key match. * @return An optional entity of the key match. */ public OptionalEntity<KeyMatch> getKeyMatch(final String id) { return keyMatchBhv.selectByPK(id); } /** * Store a key match. * * @param keyMatch The key match to store. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
* * @param key the property key * @return map containing the key-value pair */ protected static Map<String, String> createPropItem(final String key) { return createItem(key, System.getProperty(key)); } /** * Creates a key-value item map for display. * * @param label the item label * @param value the item value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java
} static <K, V> Map<K, V> singletonMap(K key, V value) { return new Map1<>(key, value); } private static class Map1<K, V> extends AbstractImmutableMap<K, V> { private final Entry<K, V> entry; private Map1(K key, V value) { this.entry = new SimpleImmutableEntry<>(key, value); } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 07 11:47:42 UTC 2025 - 7.8K bytes - Viewed (0)