Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 1,025 for origines (0.08 seconds)

  1. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

        }
    
        // Test with different origin formats
        @Test
        public void test_doFilter_differentOrigins() throws Exception {
            String[] origins = { "http://localhost:8080", "https://example.com", "http://subdomain.example.com", "https://example.com:3000" };
    
            for (String origin : origins) {
                resetMocks(); // Reset for each test
                mockRequest.setHeader("Origin", origin);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 22.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

            String[] origins = { "https://site1.com", "https://site2.com", "https://site3.com" };
    
            for (String origin : origins) {
                processCalled = false;
                corsHandler.process(origin, request, response);
                assertTrue("process should be called for " + origin, processCalled);
                assertEquals(origin, processOrigin);
            }
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  3. docs/ru/docs/tutorial/cors.md

    # CORS (Cross-Origin Resource Sharing) { #cors-cross-origin-resource-sharing }
    
    [CORS или "Cross-Origin Resource Sharing"](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) относится к ситуациям, при которых запущенный в браузере фронтенд содержит JavaScript-код, который взаимодействует с бэкендом, находящимся на другом "источнике" ("origin").
    
    ## Источник { #origin }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  4. docs/ko/docs/tutorial/cors.md

    # CORS (교차-출처 리소스 공유) { #cors-cross-origin-resource-sharing }
    
    [CORS 또는 "Cross-Origin Resource Sharing"](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS)란, 브라우저에서 실행되는 프론트엔드에 백엔드와 통신하는 JavaScript 코드가 있고, 백엔드가 프론트엔드와 다른 "출처(origin)"에 있는 상황을 의미합니다.
    
    ## 출처 { #origin }
    
    출처란 프로토콜(`http`, `https`), 도메인(`myapp.com`, `localhost`, `localhost.tiangolo.com`), 그리고 포트(`80`, `443`, `8080`)의 조합을 의미합니다.
    
    따라서, 아래는 모두 상이한 출처입니다:
    
    * `http://localhost`
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  5. docs/pt/llm-prompt.md

    * auto-completion: preenchimento automático
    * bug: bug
    * context manager: gerenciador de contexto
    * cross domain: cross domain (do not translate to "domínio cruzado")
    * cross origin: cross origin (do not translate to "origem cruzada")
    * Cross-Origin Resource Sharing: Cross-Origin Resource Sharing (do not translate to "Compartilhamento de Recursos de Origem Cruzada")
    * Deep Learning: Deep Learning (do not translate to "Aprendizado Profundo")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 12:27:02 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  6. .teamcity/scripts/CheckBadMerge.java

            System.out.println(" p2Branches: " + p2Branches);
    
            boolean p1IsMaster = p1Branches.contains("origin/master");
            boolean p2IsMaster = p2Branches.contains("origin/master");
            boolean p2IsRelease = p2Branches.stream().anyMatch(b -> b.startsWith("origin/release"));
    
            if (p1IsMaster && !p2IsMaster && p2IsRelease) {
                List<String> badFiles = filesFromMerge(commit).stream()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 16:25:09 GMT 2026
    - 9K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        public ReleaseNotesTransformer(Reader original) {
            super(original);
            this.in = new Reader() {
                Reader delegate = null;
    
                @Override
                public int read(char[] cbuf, int off, int len) throws IOException {
                    if (delegate == null) {
                        delegate = transform(original);
                    }
                    return delegate.read(cbuf, off, len);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 03 01:59:51 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  8. scripts/translate.py

                [
                    "There is an existing previous translation for the original English content, that may be outdated.",
                    "Update the translation only where necessary:",
                    "- If the original English content has added parts, also add these parts to the translation.",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  9. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Make sure all contributed code can be distributed under the terms of the [Apache License 2.0](https://github.com/gradle/gradle/blob/master/LICENSE), e.g. the code was written by yourself or the original code is licensed under [a license compatible to Apache License 2.0](https://apache.org/legal/resolved.html).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 13 22:36:19 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  10. mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt

       */
      public val handshakeServerNames: List<String>,
      /** A string like `GET` or `POST`. */
      public val method: String,
      /**
       * The request target from the original HTTP request.
       *
       * For origin-form requests this is a path like `/index.html`, that is combined with the `Host`
       * header to create the request URL.
       *
       * For HTTP proxy requests this will be either an absolute-form string like
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Jun 21 20:36:35 GMT 2025
    - 3.2K bytes
    - Click Count (1)
Back to Top