- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 2,031 for segfault (0.07 sec)
-
guava/src/com/google/common/base/Defaults.java
/** * This class provides default values for all Java types, as defined by the JLS. * * @author Ben Yu * @since 1.0 */ @J2ktIncompatible @GwtIncompatible public final class Defaults { private Defaults() {} private static final Double DOUBLE_DEFAULT = 0d; private static final Float FLOAT_DEFAULT = 0f; /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/sts/web-identity.md
MINIO_IDENTITY_OPENID_KEYCLOAK_ADMIN_URL (string) Specify Keycloak 'admin' REST API endpoint e.g. http://localhost:8080/auth/admin/ MINIO_IDENTITY_OPENID_REDIRECT_URI_DYNAMIC (on|off) Enable 'Host' header based dynamic redirect URI (default: 'off') MINIO_IDENTITY_OPENID_COMMENT (sentence) optionally add a comment to this setting
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
/** * API action for admin document management. * Provides RESTful API endpoints for bulk document operations in the Fess search engine. * Supports indexing multiple documents with automatic field validation and default value assignment. */ public class ApiAdminDocumentsAction extends FessApiAdminAction { // =================================================================================== // Constant //
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
docs/en/docs/fastapi-cli.md
## `fastapi run` { #fastapi-run } Executing `fastapi run` starts FastAPI in production mode by default.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/EmptyIterator.java
* * @author mbechler */ public class EmptyIterator implements CloseableIterator<SmbResource> { /** * Default constructor for EmptyIterator. * Creates an empty iterator with no elements. */ public EmptyIterator() { // Default constructor } /** * {@inheritDoc} * * @see java.util.Iterator#hasNext() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
case WACK -> "WACK"; default -> Integer.toString(opCode); }; resultCodeString = switch (resultCode) { case FMT_ERR -> "FMT_ERR"; case SRV_ERR -> "SRV_ERR"; case IMP_ERR -> "IMP_ERR"; case RFS_ERR -> "RFS_ERR"; case ACT_ERR -> "ACT_ERR"; case CFT_ERR -> "CFT_ERR"; default -> "0x" + Hexdump.toHexString(resultCode, 1); };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java
* @param safeMin the lowest character value in the safe range * @param safeMax the highest character value in the safe range * @param unsafeReplacement the default replacement for unsafe characters or null if no default * replacement is required */ protected ArrayBasedUnicodeEscaper( Map<Character, String> replacementMap, int safeMin, int safeMax,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
case WACK -> "WACK"; default -> Integer.toString(this.opCode); }; resultCodeString = switch (this.resultCode) { case FMT_ERR -> "FMT_ERR"; case SRV_ERR -> "SRV_ERR"; case IMP_ERR -> "IMP_ERR"; case RFS_ERR -> "RFS_ERR"; case ACT_ERR -> "ACT_ERR"; case CFT_ERR -> "CFT_ERR"; default -> "0x" + Hexdump.toHexString(this.resultCode, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 11.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt
* [reader]. For example, if the reader's peeked tag isn't readable by this adapter, it may return * a default value. * * If this does read a value, it starts with the tag and length, and reads an entire value, * including any potential composed values. * * If there's nothing to read and no default value, this will throw an exception. */ fun fromDer(reader: DerReader): T
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.2K bytes - Viewed (0)