Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1471 - 1480 of 1,832 for context_ (0.05 seconds)

  1. src/test/java/org/codelibs/fess/util/DocumentUtilTest.java

            assertEquals("http://example.com/%7Bid%7D", result);
        }
    
        @Test
        public void test_encodeUrl_unicodeChars() {
            // Non-ASCII characters are percent-encoded; encoding depends on request context
            String result = DocumentUtil.encodeUrl("http://example.com/\u00D6sterreich");
            assertEquals("http://example.com/%D6sterreich", result);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 12 01:46:45 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

        }
    
        // GET /api/admin/storage/download/{id}/
        /**
         * Downloads a file from storage.
         * @param id The ID of the file to download.
         * @return A StreamResponse containing the file content.
         */
        @Execute
        public StreamResponse get$download(final String id) {
            final PathInfo pi = convertToItem(id);
            if (StringUtil.isEmpty(pi.getName())) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  3. docs/de/docs/tutorial/stream-json-lines.md

    ## JSON Lines { #json-lines }
    
    In diesen Fällen ist es üblich, „JSON Lines“ zu senden, das ist ein Format, bei dem Sie pro Zeile genau ein JSON-Objekt senden.
    
    Eine Response hätte einen Content-Type von `application/jsonl` (anstelle von `application/json`) und der Body sähe etwa so aus:
    
    ```json
    {"name": "Plumbus", "description": "A multi-purpose household device."}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  4. docs/uk/docs/tutorial/first-steps.md

        },
        "paths": {
            "/items/": {
                "get": {
                    "responses": {
                        "200": {
                            "description": "Successful Response",
                            "content": {
                                "application/json": {
    
    
    
    ...
    ```
    
    #### Для чого потрібний OpenAPI { #what-is-openapi-for }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb/DfsImpl.java

        private CacheEntry<DfsReferralDataInternal> referrals = null;
        private final Object referralsLock = new Object();
    
        /**
         * Constructs a DFS resolver implementation
         *
         * @param tc the CIFS context containing configuration
         */
        public DfsImpl(final CIFSContext tc) {
        }
    
        private Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> getTrustedDomains(final CIFSContext tf) throws SmbAuthException {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 29.7K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/graph/ImmutableGraph.java

        public Builder<N> putEdge(EndpointPair<N> endpoints) {
          mutableGraph.putEdge(endpoints);
          return this;
        }
    
        /**
         * Returns a newly-created {@code ImmutableGraph} based on the contents of this {@code Builder}.
         */
        public ImmutableGraph<N> build() {
          return ImmutableGraph.copyOf(mutableGraph);
        }
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  7. docs/en/docs/advanced/stream-data.md

    In the examples above, the data bytes were streamed, but the response didn't have a `Content-Type` header, so the client didn't know what type of data it was receiving.
    
    You can create a custom sub-class of `StreamingResponse` that sets the `Content-Type` header to the type of data you're streaming.
    
    For example, you can create a `PNGStreamingResponse` that sets the `Content-Type` header to `image/png` using the `media_type` attribute:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java

    import java.io.UncheckedIOException;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Locale;
    import java.util.Objects;
    import java.util.stream.Collectors;
    
    /**
     * This class models the contents of a changelog YAML file. We validate it using a
     * JSON Schema, as well as some programmatic checks in {@link ValidateChangelogEntryTask}.
     * <ul>
     *   <li><code>buildSrc/src/main/resources/changelog-schema.json</code></li>
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 9.3K bytes
    - Click Count (0)
  9. CHANGELOG/CHANGELOG-1.18.md

    t".Request).{Do,DoRaw,Stream,Watch}` now require callers to pass a `context.Context` as an argument. The context is used for timeout and cancellation signaling and to pass supplementary information to round trippers in the wrapped transport chain. If you don't need any of this functionality, it is sufficient to pass a context created with `context.Background()` to these functions. The `(*"k8s.io/client-go/rest".Request).Context` method is removed now that all methods that execute a request accept...
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Jun 16 17:18:28 GMT 2021
    - 373.2K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

    import java.io.Serializable;
    import java.util.Map;
    import org.jspecify.annotations.NonNull;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@link ClassToInstanceMap} whose contents will never change, with many other important
     * properties detailed at {@link ImmutableCollection}.
     *
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @Immutable(containerOf = "B")
    @GwtIncompatible
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 7K bytes
    - Click Count (0)
Back to Top