- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 650 for ignores (0.1 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
} catch (e: AssertionError) { throw e } catch (rethrown: RuntimeException) { if (rethrown.message == "bio == null") { // Conscrypt in Android 10 and 11 may throw closing an SSLSocket. This is safe to ignore. // https://issuetracker.google.com/issues/177450597 return } throw rethrown } catch (_: Exception) { } } /** Closes this, ignoring any checked exceptions. */
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 10.2K bytes - Viewed (1) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringSearchModelInterpolator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 15.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
* kubectl: ignore only update conflicts in the scaler ([#27048](https://github.com/kubernetes/kubernetes/pull/27048), [@kargakis](https://github.com/kargakis)) * Declare out of disk when there is no free inodes ([#28176](https://github.com/kubernetes/kubernetes/pull/28176), [@ronnielai](https://github.com/ronnielai))
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java
void testReservedBytesSkipped(byte reservedValue) throws Exception { byte[] buffer = new byte[100]; int bufferIndex = 0; // Set reserved bytes to non-zero values (should be ignored) buffer[bufferIndex] = reservedValue; buffer[bufferIndex + 1] = reservedValue; buffer[bufferIndex + 2] = reservedValue; // Set valid data for other fields
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/TestThread.java
continue; } responseQueue.put(new Response(request.methodName, result, null)); } } catch (ThreadDeath death) { return; } catch (InterruptedException ignored) { // SynchronousQueue sometimes throws InterruptedException while the threads are stopping. } catch (Throwable uncaught) { this.uncaughtThrowable = uncaught; } }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 21:00:51 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
try { requestManager.findLoginManager(FessUserBean.class).ifPresent(LoginManager::logout); } catch (final Exception e1) { // ignore } throw e; } } if (defaultRoleList != null) { roleSet.addAll(defaultRoleList); }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/cache/CacheLoadingTest.java
assertThat(stats.loadSuccessCount()).isEqualTo(4); assertThat(stats.loadExceptionCount()).isEqualTo(0); assertThat(stats.hitCount()).isEqualTo(3); // duplicate keys are ignored, and don't impact stats assertThat(cache.getAll(asList(4, 5))).containsExactly(4, 4, 5, 5); stats = cache.stats(); assertThat(stats.missCount()).isEqualTo(5); assertThat(stats.loadSuccessCount()).isEqualTo(5);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 22:03:28 UTC 2025 - 91.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
} finally { if (fos != null) { try { fos.close(); } catch (final IOException e) { // ignore } } } lastModified = propertiesFile.lastModified(); } /** * Returns the current properties, reloading them if the file has been updated.Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
try { keyManager.rotateSessionKey(sid); } catch (GeneralSecurityException e) { // Ignore in concurrent test } } } } finally { latch.countDown(); } });Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/Logger.java
// TODO try { Class.forName("org.apache.commons.logging.LogFactory"); return new JclLoggerAdapterFactory(); } catch (final Throwable ignore) { return new JulLoggerAdapterFactory(); } } /** * Constructs an instance. * * @param clazz * The class to be used as the logging category.Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0)