- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 924 for f000 (0.02 sec)
-
docs/em/docs/tutorial/debugging.md
, ๐: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ๐ ๐. --- ๐ ๐ ๐ซ ๐จ ๐ฅ ๐ ๐ ๐ ๐น (๐). , ๐ฅ ๐ โ๏ธ โ1๏ธโฃ ๐ `importer.py` โฎ๏ธ: ```Python from myapp import app # Some more code ``` ๐ ๐ผ, ๐ง ๐ข ๐ `myapp.py` ๐ ๐ซ โ๏ธ ๐ข `__name__` โฎ๏ธ ๐ฒ `"__main__"`. , โธ: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ๐ ๐ซ ๐ ๏ธ. /// infoRegistered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/debugging.md
``` </div> entรฃo a variรกvel interna `__name__` no seu arquivo, criada automaticamente pelo Python, terรก como valor a string `"__main__"`. Entรฃo, a seรงรฃo: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` vai executar. --- Isso nรฃo acontecerรก se vocรช importar esse mรณdulo (arquivo). Entรฃo, se vocรช tiver outro arquivo `importer.py` com: ```Python from myapp import app
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/ko/docs/tutorial/debugging.md
๋ฐ๋ผ์ ์น์ ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ์ด ์คํ๋ฉ๋๋ค. --- ํด๋น ๋ชจ๋(ํ์ผ)์ ๊ฐ์ ธ์ค๋ฉด ์ด๋ฐ ์ผ์ด ๋ฐ์ํ์ง ์์ต๋๋ค ๊ทธ๋์ ๋ค์๊ณผ ๊ฐ์ ๋ค๋ฅธ ํ์ผ `importer.py`๊ฐ ์๋ ๊ฒฝ์ฐ: ```Python from myapp import app # Some more code ``` ์ด ๊ฒฝ์ฐ `myapp.py` ๋ด๋ถ์ ์๋ ๋ณ์์๋ ๊ฐ์ด `"__main__"`์ธ ๋ณ์ `__name__`์ด ์์ต๋๋ค. ๋ฐ๋ผ์ ๋ค์ ํ ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ์ ์คํ๋์ง ์์ต๋๋ค. /// info | ์ ๋ณดRegistered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/fr/docs/tutorial/debugging.md
</div> alors la variable interne `__name__` de votre fichier, crรฉรฉe automatiquement par Python, aura pour valeur la chaรฎne de caractรจres `"__main__"`. Ainsi, la section : ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` va s'exรฉcuter. --- Cela ne se produira pas si vous importez ce module (fichier). Par exemple, si vous avez un autre fichier `importer.py` qui contient : ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Oct 27 17:31:14 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/sts/web-identity.py
# callback url specified when the application was defined callback_uri = "http://localhost:8000/oauth2/callback" # keycloak id and secret client_id = 'account' client_secret = 'daaa3008-80f0-40f7-80d7-e15167531ff0' sts_client = boto3.client( 'sts', region_name='us-east-1', use_ssl=False, endpoint_url='http://localhost:9000', ) app = Flask(__name__) @app.route('/') def homepage():
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jul 28 01:37:51 UTC 2021 - 2.9K bytes - Viewed (0) -
src/archive/tar/reader_test.go
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Oct 03 15:48:09 UTC 2024 - 46.9K bytes - Viewed (0) -
docs/en/docs/tutorial/debugging.md
``` </div> then the internal variable `__name__` in your file, created automatically by Python, will have as value the string `"__main__"`. So, the section: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` will run. --- This won't happen if you import that module (file). So, if you have another file `importer.py` with: ```Python from myapp import app # Some more code ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
public Integer getLoggingSearchMaxQueueSizeAsInteger() { return 1000; } @Override public Integer getLoggingClickMaxQueueSizeAsInteger() { return 1000; } @Override public Integer getQueryMaxLengthAsInteger() { return 1000; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/taglib/FessFunctionsTest.java
assertEquals("1,000", FessFunctions.formatNumber(1000, "###,###")); assertEquals("1,000,000", FessFunctions.formatNumber(1000000, "###,###")); } public void test_formatFileSize() { assertEquals("0", FessFunctions.formatFileSize(0)); assertEquals("1000", FessFunctions.formatFileSize(1000)); assertEquals("976.6K", FessFunctions.formatFileSize(1000000));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5.9K bytes - Viewed (0) -
cmd/net.go
if i := strings.Index(host, "%"); i > -1 { host = host[:i] } return net.ParseIP(host) != nil } // extractHostPort - extracts host/port from many address formats // such as, ":9000", "localhost:9000", "http://localhost:9000/" func extractHostPort(hostAddr string) (string, string, error) { var addr, scheme string if hostAddr == "" { return "", "", errors.New("unable to process empty address") }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 19 14:34:00 UTC 2024 - 9.6K bytes - Viewed (1)