- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 265 for 8800 (0.02 seconds)
-
docs/zh-hant/docs/tutorial/cors.md
因此,以下皆是不同的來源: * `http://localhost` * `https://localhost` * `http://localhost:8080` 即使它們都在 `localhost`,但使用了不同的通訊協定或連接埠,所以它們是不同的「來源」。 ## 步驟 { #steps } 假設你的前端在瀏覽器中執行於 `http://localhost:8080`,其 JavaScript 嘗試與執行在 `http://localhost` 的後端通訊(因為未指定連接埠,瀏覽器會假設預設連接埠為 `80`)。 接著,瀏覽器會向 `:80` 的後端送出一個 HTTP `OPTIONS` 請求;若後端回傳適當的標頭,授權此不同來源(`http://localhost:8080`)的通訊,則在 `:8080` 的瀏覽器就會允許前端的 JavaScript 向 `:80` 的後端送出它的請求。 為了達成這點,`:80` 的後端必須有一份「允許的來源」清單。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 5K bytes - Click Count (0) -
src/test/resources/run.sh
#!/bin/bash touch $(ls -d ./fess-*/logs)/fess-crawler.log tail -f ./fess-*/logs/*.log & mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" ret=$? if [ $ret != 0 ] ; then for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do cat $f done fi
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 10 03:25:34 GMT 2024 - 353 bytes - Click Count (0) -
docs/zh/docs/tutorial/debugging.md
所以,下面这部分代码才会运行: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` --- 如果你是导入这个模块(文件)就不会这样。 因此,如果你的另一个文件 `importer.py` 像这样: ```Python from myapp import app # 其他一些代码 ``` 在这种情况下,`myapp.py` 内部的自动变量不会有值为 `"__main__"` 的变量 `__name__`。 所以,下面这一行不会被执行: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` /// info | 信息Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/auditlog/auditlog-echo.md
# `auditlog-echo`: A tool to view MinIO Audit logs on the console 1. Run the tool with: ``` go run docs/auditlog/auditlog-echo.go ``` The listen port has a default value (8080), but can be set with the `-port` flag. 2. Configure audit logging in MinIO with for example: ``` mc admin config set myminio audit_webhook enable=on endpoint=http://localhost:8080 ```
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 01 21:31:13 GMT 2024 - 447 bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/debugging.md
因此,這段: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` 會被執行。 --- 如果你是匯入該模組(檔案),就不會發生這件事。 所以,如果你有另一個檔案 `importer.py`,內容如下: ```Python from myapp import app # 其他程式碼 ``` 在那種情況下,`myapp.py` 中自動建立的變數 `__name__` 就不會是 `"__main__"`。 因此,這一行: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` 就不會被執行。 /// info | 說明Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
} @Test public void test_add_originsWithDifferentPorts() { // Setup String origin8080 = "https://example.com:8080"; String origin8443 = "https://example.com:8443"; TestCorsHandler handler8080 = new TestCorsHandler("handler-8080"); TestCorsHandler handler8443 = new TestCorsHandler("handler-8443"); // Execute corsHandlerFactory.add(origin8080, handler8080);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.3K bytes - Click Count (0) -
docs/de/docs/tutorial/debugging.md
</div> dann hat in Ihrer Datei die interne Variable `__name__`, die von Python automatisch erstellt wird, als Wert den String `"__main__"`. Daher wird der Abschnitt: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ausgeführt. --- Dies wird nicht passieren, wenn Sie das Modul (die Datei) importieren. Wenn Sie also eine weitere Datei `importer.py` mit folgendem Inhalt haben: ```Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 2.7K bytes - Click Count (0) -
scripts/playwright/separate_openapi_schemas/image01.py
browser = playwright.chromium.launch(headless=False) # Update the viewport manually context = browser.new_context(viewport={"width": 960, "height": 1080}) page = context.new_page() page.goto("http://localhost:8000/docs") page.get_by_text("POST/items/Create Item").click() page.get_by_role("tab", name="Schema").first.click() # Manually add the screenshot page.screenshot(
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Sep 13 09:14:46 GMT 2024 - 974 bytes - Click Count (0) -
docs/sts/web-identity.go
flag.StringVar(&configEndpoint, "config-ep", "http://localhost:8080/auth/realms/minio/.well-known/openid-configuration", "OpenID discovery document endpoint") flag.StringVar(&clientID, "cid", "", "Client ID") flag.StringVar(&clientSec, "csec", "", "Client Secret") flag.StringVar(&clientScopes, "cscopes", "openid", "Client Scopes") flag.IntVar(&port, "port", 8080, "Port") }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri May 19 09:13:33 GMT 2023 - 7.8K bytes - Click Count (0) -
scripts/playwright/separate_openapi_schemas/image04.py
browser = playwright.chromium.launch(headless=False) # Update the viewport manually context = browser.new_context(viewport={"width": 960, "height": 1080}) page = context.new_page() page.goto("http://localhost:8000/docs") page.get_by_role("button", name="Item-Input").click() page.get_by_role("button", name="Item-Output").click() page.set_viewport_size({"width": 960, "height": 820}) # Manually add the screenshot
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Sep 13 09:14:46 GMT 2024 - 1K bytes - Click Count (0)