- Sort Score
- Result 10 results
- Languages All
Results 1031 - 1040 of 1,148 for Handler (0.05 sec)
-
src/bytes/bytes.go
} if asciiSpace[c] == 0 { // At this point, s[:hi+1] starts and ends with ASCII // non-space bytes, so we're done. Non-ASCII cases have // already been handled above. return s[:hi+1] } } } // Special case to preserve previous TrimLeftFunc behavior, // returning nil instead of empty slice if all spaces. return nil }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
VersionRange mergedRange = range1.restrict(range2); // TODO current policy is to retain the original version - is this correct, do we need strategies or is that // handled elsewhere? // assertEquals( "1.1", mergedRange.getRecommendedVersion().toString(), CHECK_VERSION_RECOMMENDATION );
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 44.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* Validates user attributes for the specified type. * * @param type the class type to validate for * @param attributes the map of attribute names to values * @param consumer the consumer to handle validation errors */ public void validateUserAttributes(final Class<?> type, final Map<String, String> attributes, final Consumer<String> consumer) { if (type == Long.class) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
mockwebserver/api/mockwebserver3.api
public static final field INSTANCE Lmockwebserver3/SocketEffect$Stall; } public abstract interface class mockwebserver3/SocketHandler { public abstract fun handle (Lokio/Socket;)V
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
try { // Test connection pool operations without actually connecting boolean contains = pool.contains(null); // Should handle gracefully successCount.incrementAndGet(); } catch (Exception e) { synchronized (exceptions) { exceptions.add(e);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
import jcifs.smb1.netbios.NbtAddress; import jcifs.smb1.util.LogStream; /** * <p>Under normal conditions it is not necessary to use * this class to use jCIFS properly. Name resolusion is * handled internally to the <code>jcifs.smb1.smb1</code> package. * <p> * This class is a wrapper for both {@link jcifs.smb1.netbios.NbtAddress} * and {@link java.net.InetAddress}. The name resolution mechanisms
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
assertNotNull(suggestItem); assertEquals(word, suggestItem.getText()); assertEquals(boost, suggestItem.getUserBoost(), 0.001f); // The queryFreq and docFreq might be handled differently by SuggestItem assertTrue(suggestItem.getQueryFreq() >= 0); assertTrue(suggestItem.getDocFreq() >= 0); // Check readings String[][] itemReadings = suggestItem.getReadings();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashSet.java
} /** Returns whether arrays need to be allocated. */ boolean needsAllocArrays() { return table == null; } /** Handle lazy allocation of arrays. */ @CanIgnoreReturnValue int allocArrays() { Preconditions.checkState(needsAllocArrays(), "Arrays already allocated"); int expectedSize = metadata;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 23.9K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
if (lowerBounds.length == 0) { // ? extends something changes to capture-of return captureAsTypeVariable(wildcardType.getUpperBounds()); } else { // TODO(benyu): handle ? super T somehow. return type; } } throw new AssertionError("must have been one of the known types"); } TypeVariable<?> captureAsTypeVariable(Type[] upperBounds) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
container is built. * Turnkey Deployments (Deployment API (Beta) in the Extensions API group) automate deployment and rolling updates of applications, specified declaratively. It handles versioning, multiple simultaneous rollouts, aggregating status across all pods, maintaining application availability, and rollback. * <strong>Automated cluster management: </strong>
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0)