- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 681 for delete (0.05 sec)
-
Http2Stream.kt
cancelStreamIfNecessary() L695: } L696: } L697: L698: companion object { L699: internal const val EMIT_BUFFER_SIZE = 16384L L700: } L701: L702: /** [delta] will be negative if a settings frame initial window is smaller than the last. */ L703: fun addBytesToWriteWindow(delta: Long) { L704: writeBytesMaximum += delta L705: if (delta > 0L) { L706: condition.signalAll() L707: } L708: } L709: L710: @Throws(IOException::class) L711: internal fun checkOutNotClosed() { L712: when...github.com/square/okhttp/okhttp/src/main/kotlin...Sat Apr 20 17:03:43 UTC 2024 23.2K bytes -
LocalCache.java
ClassNotFoundException { L4807: in.defaultReadObject(); L4808: CacheBuilder<K, V> builder = recreateCacheBuilder(); L4809: this.delegate = builder.build(); L4810: } L4811: L4812: private Object readResolve() { L4813: return delegate; L4814: } L4815: L4816: @Override L4817: protected Cache<K, V> delegate() { L4818: return delegate; L4819: } L4820: } L4821: L4822: /** L4823: * Serializes the configuration of a LocalCache, reconstituting it as an LoadingCache...github.com/google/guava/guava/src/com/google/co...Fri Oct 18 19:07:49 UTC 2024 149.2K bytes -
fess_message_ja.properties
- - - - - - - - - - - - - - - - L58:# five framework-embedded messages (don't change key names) L59:# - - - - - - - - - -/ L60:errors.login.failure = ログインに失敗しました。 L61:errors.app.illegal.transition = 不正な遷移のため、再度実行してください。 L62:errors.app.db.already.deleted = 他の処理で削除されている可能性があります。再度、操作をやり直してください。 L63:errors.app.db.already.updated = 他の処理で更新されている可能性があります。再度、操作をやり直してください。 L64:errors.app.db.already.exists = データがすでに存在しています。再度、操作をやり直してください。 L65:errors.app.double.submit.request = このリクエストの前に処理されている場合があります。再度、操作をやり直してください。...github.com/codelibs/fess/src/main/resources/fes...Sat Mar 18 03:05:44 UTC 2023 15.1K bytes -
ImmutableIntArray.java
@Override L544: public boolean equals(@CheckForNull Object object) { L545: if (object instanceof AsList) { L546: AsList that = (AsList) object; L547: return this.parent.equals(that.parent); L548: } L549: // We could delegate to super now but it would still box too much L550: if (!(object instanceof List)) { L551: return false; L552: } L553: List<?> that = (List<?>) object; L554: if (this.size() != that.size()) { L555: return false; L556:...github.com/google/guava/android/guava/src/com/g...Fri Oct 25 18:05:56 UTC 2024 22.2K bytes -
CHANGELOG-1.28.md
1.22.6 ([#126973](https://github.com/kubernetes/kubernetes/pull/126973), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing] L564: L565:### Bug or Regression L566: L567:- Fix a scheduler preemption issue where the victim pod was not deleted due to incorrect status patching. This issue occurred when the preemptor and victim pods had different QoS classes in their status, causing the preemption to fail entirely. ([#126695](https://github.com/kubernetes/kubernetes/pull/126695), [@Huang...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Wed Oct 23 04:34:59 UTC 2024 456.9K bytes -
TypeTokenTest.java
Exception { L1441: class Bar<T> {} L1442: class SubBar<T> extends Bar<T> { L1443: @SuppressWarnings("unused") L1444: Bar<T> delegate; L1445: L1446: TypeToken<SubBar<T>> fieldTypeAsSubBar() { L1447: return new TypeToken<SubBar<T>>() {}; L1448: } L1449: } L1450: L1451: Field delegateField = SubBar.class.getDeclaredField("delegate"); L1452: // barType is Bar<T>, a ParameterizedType with no generic arguments specified L1453: TypeToken<?> barType = TypeToken.o...github.com/google/guava/guava-tests/test/com/go...Mon Oct 21 21:13:09 UTC 2024 89.1K bytes -
ImmutableDoubleArray.java
@Override L549: public boolean equals(@CheckForNull Object object) { L550: if (object instanceof AsList) { L551: AsList that = (AsList) object; L552: return this.parent.equals(that.parent); L553: } L554: // We could delegate to super now but it would still box too much L555: if (!(object instanceof List)) { L556: return false; L557: } L558: List<?> that = (List<?>) object; L559: if (this.size() != that.size()) { L560: return false; L561:...github.com/google/guava/android/guava/src/com/g...Fri Oct 25 18:05:56 UTC 2024 23K bytes -
gradle-wrapper.jar
accept(java.io.File, String); } org/gradle/wrapper/Download$DefaultDownloadProgr.class package org.gradle.wrapper; public final synchronized class Download$DefaultDownloadProgr { public final Logger logger; public final Download$DefaultDownloadProgr delegate; public int previousDownloadPerc; public void Download$DefaultDownloadProgr(Logger); public final void downloadStatusChange(long, long); } org/gradle/wrapper/Download$ProxyAuthenticator.class package org.gradle.wrapper; public final synchronized...github.com/square/okhttp/gradle/wrapper/gradle-...Sun Dec 24 09:00:26 UTC 2023 42.4K bytes -
Ints.java
each L579: // array slot is read and written exactly once. However, it can have very poor memory locality: L580: // benchmarking shows it can take 7 times longer than the other two in some cases. The other two L581: // do n swaps, minus a delta (0 or 2 for Reversal, gcd(d, n) for Successive), so that's about L582: // twice as many reads and writes. But benchmarking shows that they usually perform better than L583: // Dolphin. Reversal is about as good as Successive on average, and it...github.com/google/guava/android/guava/src/com/g...Fri Oct 25 18:05:56 UTC 2024 31K bytes -
ByteSource.java
IOException; L107: L108: /** L109: * Opens a new buffered {@link InputStream} for reading from this source. The returned stream is L110: * not required to be a {@link BufferedInputStream} in order to allow implementations to simply L111: * delegate to {@link #openStream()} when the stream returned by that method does not benefit from L112: * additional buffering (for example, a {@code ByteArrayInputStream}). This method returns a new, L113: * independent stream each time it is called. L114:...github.com/google/guava/android/guava/src/com/g...Sat Oct 19 00:26:48 UTC 2024 26.2K bytes