Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 251 for espaces (0.06 seconds)

  1. src/test/java/org/codelibs/curl/CurlRequestTest.java

        @Test
        public void test_UrlWithSpaces() {
            // ## Arrange ##
            // URLs with spaces should be accepted (HttpURLConnection is lenient)
            final CurlRequest request = new CurlRequest(Method.GET, "http://example.com/path with spaces");
    
            // ## Assert ##
            assertNotNull(request);
            assertEquals(Method.GET, request.method());
        }
    
        @Test
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 09:11:12 GMT 2026
    - 24.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/MarkdownRenderer.java

                // Fallback to escaped plain text
                return escapeHtml(markdown);
            }
        }
    
        /**
         * Escapes HTML special characters for safe display.
         *
         * @param text the text to escape
         * @return HTML-escaped text
         */
        private String escapeHtml(final String text) {
            if (text == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 12 10:32:40 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. docs/fr/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

            end
        end
    
        style V2 fill:#f9fff3
        style V1 fill:#fff6f0
        style V1Field fill:#fff6f0
        style V2Field fill:#f9fff3
    ```
    
    ... mais vous pouvez avoir des modèles séparés utilisant Pydantic v1 et v2 dans la même application.
    
    ```mermaid
    graph TB
        subgraph "✅ Supported"
            direction TB
            subgraph V2["Pydantic v2 Model"]
                V2Field["Pydantic v2 Model"]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  4. impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

        }
    
        /**
         * Derive the path portion of the given URL.
         *
         * @param url the repository URL
         * @return the basedir of the repository
         * TODO need to URL decode for spaces?
         */
        private String basedir(String url) {
            String retValue = null;
    
            if (protocol.equalsIgnoreCase("file")) {
                retValue = url.substring(protocol.length() + 1);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  5. internal/kms/context.go

    				dst.WriteByte('n')
    			case '\r':
    				dst.WriteByte('r')
    			case '\t':
    				dst.WriteByte('t')
    			default:
    				// This encodes bytes < 0x20 except for \t, \n and \r.
    				// If escapeHTML is set, it also escapes <, >, and &
    				// because they can lead to security holes when
    				// user-controlled strings are rendered into JSON
    				// and served to some browsers.
    				dst.WriteString(`u00`)
    				dst.WriteByte(hexTable[b>>4])
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 6K bytes
    - Click Count (0)
  6. docs/changelogs/changelog_2x.md

        for each. This changes `Address` to no longer use `ConnectionSpec`. (This is
        an incompatible API change).
    
     *  **`FormEncodingBuilder` now uses `%20` instead of `+` for encoded spaces.**
        Both are permitted-by-spec, but `%20` requires fewer special cases.
    
     *  **Okio has been updated to 1.4.0.**
         ```xml
         <dependency>
           <groupId>com.squareup.okio</groupId>
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

        public void test_buildFilePath_encodedCharacters() {
            final Path result = indexExportJob.buildFilePath("/export", "https://example.com/path%20with%20spaces/file.html",
                    new HtmlIndexExportFormatter());
            assertEquals(Path.of("/export/example.com/path with spaces/file.html"), result);
        }
    
        // --- buildHtml() tests ---
    
        @Test
        public void test_buildHtml_basicDocument() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  8. docs/es/docs/fastapi-cli.md

    ```console
    $ fastapi dev main.py
    ```
    
    Pero tendrías que recordar pasar el path correcto cada vez que llames al comando `fastapi`.
    
    Adicionalmente, otras herramientas podrían no ser capaces de encontrarla, por ejemplo la [Extensión de VS Code](editor-support.md) o [FastAPI Cloud](https://fastapicloud.com), así que se recomienda usar el `entrypoint` en `pyproject.toml`.
    
    ## `fastapi dev` { #fastapi-dev }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

                            contents = new StringBuilder()
                        }
                        // We don't need the annotations
                        line = line.replaceAll(/<\d+>/, '')
                        // Nor any trailing spaces
                        line = line.replaceAll(/\s+$/, '')
                        contents.append(line).append('\n')
                        return
                    }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

                return "https://hooks.slack.com/services/test";
            }
    
            @Override
            public String getGoogleChatWebhookUrls() {
                return "https://chat.googleapis.com/v1/spaces/test/messages?key=test";
            }
        }
    
        private static class MockSMailPostingDiscloser implements SMailPostingDiscloser {
            private String subject;
            private String plainText;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 20K bytes
    - Click Count (0)
Back to Top