- Sort Score
- Result 10 results
- Languages All
Results 761 - 770 of 827 for accesses (0.18 sec)
-
docs/en/docs/deployment/concepts.md
## Running on Startup In most cases, when you create a web API, you want it to be **always running**, uninterrupted, so that your clients can always access it. This is of course, unless you have a specific reason why you want it to run only in certain situations, but most of the time you want it constantly running and **available**. ### In a Remote Server
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Sep 18 16:09:57 UTC 2024 - 17.8K bytes - Viewed (0) -
src/archive/zip/zip_test.go
type repeatedByte struct { off int64 b byte n int64 } // rleBuffer is a run-length-encoded byte buffer. // It's an io.Writer (like a bytes.Buffer) and also an io.ReaderAt, // allowing random-access reads. type rleBuffer struct { buf []repeatedByte } func (r *rleBuffer) Size() int64 { if len(r.buf) == 0 { return 0 } last := &r.buf[len(r.buf)-1] return last.off + last.n }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu May 23 01:00:11 UTC 2024 - 19.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
* browsers over consistency with obsolete specifications. * * ### Paths and Queries should decompose * * Neither of the built-in URL models offer direct access to path segments or query parameters. * Manually using `StringBuilder` to assemble these components is cumbersome: do '+' characters get * silently replaced with spaces? If a query parameter contains a '&', does that get escaped?
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0) -
CHANGELOG.md
* New: `QueueDispatcher.clear()` may be used to reset a MockWebServer instance. * New: `FileDescriptor.toRequestBody()` may be particularly useful for users of Android's Storage Access Framework. * Upgrade: [Kotlin 1.5.31][kotlin_1_5_31]. * Upgrade: [Okio 3.0.0][okio_3_0_0]. ## Version 5.0.0-alpha.2 _2021-01-30_
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 18 01:31:39 UTC 2024 - 21.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. 60 */ String API_ACCESS_TOKEN_LENGTH = "api.access.token.length"; /** The key of the configuration. e.g. false */ String API_ACCESS_TOKEN_REQUIRED = "api.access.token.required"; /** The key of the configuration. e.g. */ String API_ACCESS_TOKEN_REQUEST_PARAMETER = "api.access.token.request.parameter"; /** The key of the configuration. e.g. Radmin-api */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Range.java
StringBuilder sb = new StringBuilder(16); lowerBound.describeAsLowerBound(sb); sb.append(".."); upperBound.describeAsUpperBound(sb); return sb.toString(); } // We declare accessors so that we can use method references like `Range::lowerBound`. Cut<C> lowerBound() { return lowerBound; } Cut<C> upperBound() { return upperBound; } Object readResolve() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 27.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
// checks on the _original_ iterable when FluentIterable.from is used. // To avoid a self retain cycle under j2objc, we store Optional.absent() instead of // Optional.of(this). To access the delegate iterable, call #getDelegate(), which converts to // absent() back to 'this'. private final Optional<Iterable<E>> iterableDelegate; /** Constructor for use by subclasses. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 24 13:42:31 UTC 2024 - 35.7K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java
* repository system instance(s) use {@link RepositorySystem#shutdown()} method on supplied instance(s). * <p> * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object * graph construction. * <p> * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.7K bytes - Viewed (0) -
docs/metrics/prometheus/list.md
| `minio_node_drive_io_waiting` | Total number I/O operations waiting on drive | ## Identity and Access Management (IAM) Metrics | Name | Description |
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:48:51 UTC 2024 - 43.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
/** The key of the message: Failed to install {0}. */ public static final String ERRORS_failed_to_install_plugin = "{errors.failed_to_install_plugin}"; /** The key of the message: Failed to access available plugins. */ public static final String ERRORS_failed_to_find_plugins = "{errors.failed_to_find_plugins}"; /** The key of the message: Failed to process the request: {0} */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 119.9K bytes - Viewed (0)