- Sort Score
- Num 10 results
- Language All
Results 561 - 570 of 1,082 for logp (0.28 seconds)
-
src/main/resources/fess_message_pt_BR.properties
success.send_testmail=E-mail de teste enviado. success.job_log_delete_all=Log de trabalho excluído. success.changed_password=Senha alterada. success.started_data_update=Processo de atualização de dados iniciado. success.reindex_started=Reindexação iniciada. success.bulk_process_started=Processo em massa iniciado. success.print_thread_dump=Despejo de threads impresso no arquivo de log. success.install_plugin=Instalando o plugin {0}.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.7K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
public HashCode hashString(CharSequence input, Charset charset) { if (charset.equals(UTF_8)) { int utf16Length = input.length(); int h1 = seed; int i = 0; int len = 0; // This loop optimizes for pure ASCII. while (i + 4 <= utf16Length) { char c0 = input.charAt(i); char c1 = input.charAt(i + 1); char c2 = input.charAt(i + 2); char c3 = input.charAt(i + 3);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 11.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.service; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv; import jakarta.annotation.Resource; /** * Service class for managing user information data. * This service provides operations for maintaining and cleaning up user information records. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java
* {@link Uninterruptibles}. Still, this method allows callers to write <a * href="https://errorprone.info/bugpattern/WaitNotInLoop">the standard, required loop for waiting on a {@code * Condition}</a> but without the need to handle interruption. * * @return {@code false} if the waiting time detectably elapsed before return from the methodCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 23:24:32 GMT 2026 - 22.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
*/ @Override protected int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; if (log.isDebugEnabled()) { log.debug("Opening " + this.name); log.debug("Flags are " + Hexdump.toHexString(getFlags(), 4)); } SMBUtil.writeInt2(57, dst, dstIndex); dst[dstIndex + 2] = this.securityFlags;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 22.9K bytes - Click Count (0) -
tests/test_dependency_after_yield_streaming.py
the 200 status code is already sent, but there's still an error in the server afterwards, an exception is raised and captured or shown in the server logs. """ with TestClient(app, raise_server_exceptions=False) as client: response = client.get("/broken-session-stream") assert response.status_code == 200
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 3.2K bytes - Click Count (0) -
android/guava/src/com/google/common/hash/FarmHashFingerprint64.java
int seed = 81; // For strings over 64 bytes we loop. Internal state consists of 56 bytes: v, w, x, y, and z. long x = seed; @SuppressWarnings("ConstantOverflow") long y = seed * K1 + 113; long z = shiftMix(y * K2 + 113) * K2; long[] v = new long[2]; long[] w = new long[2]; x = x * K2 + load64(bytes, offset); // Set end so that after the loop we have 1 to 64 bytes left to process.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 7.6K bytes - Click Count (0) -
docs/ja/docs/advanced/async-tests.md
/// tip | 豆知識 テストに非同期関数呼び出しを統合した際に(例: [MongoDB の MotorClient](https://stackoverflow.com/questions/41584243/runtimeerror-task-attached-to-a-different-loop) 使用時)、`RuntimeError: Task attached to a different loop` に遭遇した場合は、イベントループを必要とするオブジェクトは非同期関数内でのみインスタンス化するようにしてください。例えば `@app.on_event("startup")` コールバック内で行います。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 4.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Comparators.java
* // returns {"foo", "quux"} * } * * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log * k)), as opposed to e.g. {@code Stream.sorted(comparator).limit(k)}, which currently takes O(n * log n) time and O(n) space. * * @throws IllegalArgumentException if {@code k < 0} * @since 33.2.0 (available since 22.0 in guava-jre) */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 11.5K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/SloppyTearDown.java
private static final Logger logger = Logger.getLogger(SloppyTearDown.class.getName()); @Override public final void tearDown() { try { sloppyTearDown(); } catch (Throwable t) { logger.log(Level.INFO, "exception thrown during tearDown: " + t.getMessage(), t); } } public abstract void sloppyTearDown() throws Exception;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 1.6K bytes - Click Count (0)