- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 800 for mein (0.02 sec)
-
buildSrc/src/main/kotlin/Osgi.kt
fun Project.applyOsgiMultiplatform(vararg bndProperties: String) { // BND is incompatible with Kotlin/Multiplatform because it assumes the JVM source set's name is // 'main'. Work around this by creating a 'main' source set that forwards to 'jvmMain'. // // The forwarding SourceSet also needs to fake out some task names to prevent them from being // registered twice. // // https://github.com/bndtools/bnd/issues/6590
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/testing.md
``` . ├── app │ ├── __init__.py │ └── main.py ``` No arquivo `main.py` você tem seu aplicativo **FastAPI**: {* ../../docs_src/app_testing/main.py *} ### Arquivo de teste
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java
assertEquals( "{\"@timestamp\":\"2022-01-01T00:00:00.000Z\",\"log.level\":\"INFO\",\"ecs.version\":\"1.2.0\",\"service.name\":\"fess\",\"event.dataset\":\"app\",\"process.thread.name\":\"main\",\"log.logger\":\"org.codelibs.fess.helper.ActivityHelperTest$1\",\"labels.action\":\"LOGIN\",\"labels.user\":\"-\",\"labels.permissions\":\"-\"}", localLogMsg.get());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 18.7K bytes - Viewed (0) -
docs/de/docs/tutorial/query-params-str-validations.md
{* ../../docs_src/query_params_str_validations/tutorial006_an_py39.py hl[9] *} ### Erforderlich, kann `None` sein Sie können deklarieren, dass ein Parameter `None` akzeptiert, aber dennoch erforderlich ist. Das zwingt Clients, den Wert zu senden, selbst wenn er `None` ist. Um das zu machen, deklarieren Sie, dass `None` ein gültiger Typ ist, aber verwenden Sie dennoch `...` als Default:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 16.6K bytes - Viewed (0) -
pom.xml
<exclude>META-INF/**</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/netdfs.java</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/srvsvc.java</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/samr.java</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/lsarpc.java</exclude> <exclude>src/main/java/jcifs/dcerpc/rpc.java</exclude> <exclude>src/main/java/jcifs/smb1/**</exclude>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/es/docs/deployment/manually.md
``` </div> /// note | Nota El comando `uvicorn main:app` se refiere a: * `main`: el archivo `main.py` (el "módulo" de Python). * `app`: el objeto creado dentro de `main.py` con la línea `app = FastAPI()`. Es equivalente a: ```Python from main import app ``` ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.2K bytes - Viewed (0) -
docs/pt/docs/advanced/async-tests.md
``` . ├── app │ ├── __init__.py │ ├── main.py │ └── test_main.py ``` O arquivo `main.py` teria: {* ../../docs_src/async_tests/main.py *} O arquivo `test_main.py` teria os testes para para o arquivo `main.py`, ele poderia ficar assim: {* ../../docs_src/async_tests/test_main.py *} ## Executá-lo
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/bn/docs/environment-variables.md
<div class="termy"> ```console // এখনো আমরা এনভায়রনমেন্ট ভেরিয়েবল সেট করিনি $ python main.py // যেহেতু env var সেট করা হয়নি, তাই আমরা ডিফল্ট ভ্যালু পাচ্ছি Hello World from Python // কিন্তু আমরা প্রথমে যদি একটা এনভায়রনমেন্ট ভারিয়েবল তৈরি করে নেই $ export MY_NAME="Wade Wilson" // এবং তারপর আবার প্রোগ্রাটিকে কল করি $ python main.py // এখন এটি এনভায়রনমেন্ট ভেরিয়েবল রিড করতে পারবে Hello Wade Wilson from Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Jun 05 08:15:56 UTC 2025 - 17.2K bytes - Viewed (0) -
docs/es/docs/environment-variables.md
<div class="termy"> ```console // Aquí todavía no configuramos la env var $ python main.py // Como no configuramos la env var, obtenemos el valor por defecto Hello World from Python // Pero si creamos una variable de entorno primero $ export MY_NAME="Wade Wilson" // Y luego llamamos al programa nuevamente $ python main.py // Ahora puede leer la variable de entorno Hello Wade Wilson from Python ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/pt/docs/advanced/settings.md
<div class="termy"> ```console // Aqui ainda não definimos a env var $ python main.py // Por isso obtemos o valor padrão Hello World from Python // Mas se definirmos uma variável de ambiente primeiro $ export MY_NAME="Wade Wilson" // E executarmos o programa novamente $ python main.py // Agora ele pode ler a variável de ambiente Hello Wade Wilson from Python ``` </div>
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Jan 15 20:17:23 UTC 2025 - 15.8K bytes - Viewed (0)