Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 265 for 8800 (0.2 seconds)

  1. docs/es/docs/tutorial/cors.md

    Para lograr esto, el backend `:80` debe tener una lista de "orígenes permitidos".
    
    En este caso, la lista tendría que incluir `http://localhost:8080` para que el frontend `:8080` funcione correctamente.
    
    ## Comodines { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 5.6K bytes
    - Click Count (0)
  2. docs/uk/docs/tutorial/cors.md

    Щоб досягти цього, бекенд на порту `:80` повинен мати список «дозволених джерел».
    
    У цьому випадку список має містити `http://localhost:8080`, щоб фронтенд на порту `:8080` працював коректно.
    
    ## Дикі карти { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/cors.md

    Pour y parvenir, le backend `:80` doit disposer d’une liste « d’origines autorisées ».
    
    Dans ce cas, la liste devrait inclure `http://localhost:8080` pour que le frontend `:8080` fonctionne correctement.
    
    ## Caractères génériques { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  4. docs/ko/docs/advanced/wsgi.md

    ///
    
    ## 확인하기 { #check-it }
    
    이제 `/v1/` 경로에 있는 모든 요청은 Flask 애플리케이션에서 처리됩니다.
    
    그리고 나머지는 **FastAPI**에 의해 처리됩니다.
    
    실행하고 [http://localhost:8000/v1/](http://localhost:8000/v1/)로 이동하면 Flask의 응답을 볼 수 있습니다:
    
    ```txt
    Hello, World from Flask!
    ```
    
    그리고 [http://localhost:8000/v2](http://localhost:8000/v2)로 이동하면 **FastAPI**의 응답을 볼 수 있습니다:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  5. docs/iam/access-manager-plugin.go

    }
    
    func main() {
    	flag.Parse()
    	serveFunc := func() error {
    		return http.ListenAndServe(":8080", nil)
    	}
    
    	if certFile != "" || keyFile != "" {
    		if certFile == "" || keyFile == "" {
    			log.Fatal("Please provide both a key file and a cert file to enable TLS.")
    		}
    		serveFunc = func() error {
    			return http.ListenAndServeTLS(":8080", certFile, keyFile, nil)
    		}
    	}
    
    	http.HandleFunc("/", mainHandler)
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Feb 08 17:15:20 GMT 2024
    - 2.7K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/cors.md

    Um dies zu erreichen, muss das `:80`-Backend eine Liste von „erlaubten Origins“ haben.
    
    In diesem Fall müsste die Liste `http://localhost:8080` enthalten, damit das `:8080`-Frontend korrekt funktioniert.
    
    ## Wildcards { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 6K bytes
    - Click Count (0)
  7. docs/ru/docs/advanced/wsgi.md

    А всё остальное будет обрабатываться **FastAPI**.
    
    Если вы запустите это и перейдёте по [http://localhost:8000/v1/](http://localhost:8000/v1/), вы увидите HTTP‑ответ от Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    А если вы перейдёте по [http://localhost:8000/v2](http://localhost:8000/v2), вы увидите HTTP‑ответ от FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  8. docs/pt/docs/advanced/wsgi.md

    E o resto será manipulado pelo **FastAPI**.
    
    Se você rodar a aplicação e ir até [http://localhost:8000/v1/](http://localhost:8000/v1/), você verá o retorno do Flask:
    
    ```txt
    Hello, World from Flask!
    ```
    
    E se você for até [http://localhost:8000/v2](http://localhost:8000/v2), você verá o retorno do FastAPI:
    
    ```JSON
    {
        "message": "Hello World"
    }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  9. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

            ),
          )
        val requestLine = decodeRequestLine("CONNECT example.com:8080 HTTP/1.1")
        val request = RecordedRequest(requestLine, headers, emptyList(), 0, ByteString.EMPTY, 0, 0, socket)
        assertThat(request.target).isEqualTo("example.com:8080")
        assertThat(request.url.toString()).isEqualTo("http://example.com:8080/")
      }
    
      @Test fun testAbsoluteForm() {
        val socket =
          MockWebServerSocket(
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Aug 02 20:36:00 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  10. docs/en/docs/tutorial/cors.md

    To achieve this, the `:80`-backend must have a list of "allowed origins".
    
    In this case, the list would have to include `http://localhost:8080` for the `:8080`-frontend to work correctly.
    
    ## Wildcards { #wildcards }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 5.2K bytes
    - Click Count (0)
Back to Top