- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 1,071 for mais (0.04 sec)
-
buildscripts/cross-compile.sh
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 19 01:08:22 UTC 2023 - 958 bytes - Viewed (0) -
docs/ja/docs/tutorial/testing.md
実際のアプリケーションでは、おそらくテストを別のファイルに保存します。 また、**FastAPI** アプリケーションは、複数のファイル/モジュールなどで構成されている場合もあります。 ### **FastAPI** アプリファイル **FastAPI** アプリに `main.py` ファイルがあるとします: ```Python {!../../docs_src/app_testing/main.py!} ``` ### テストファイル 次に、テストを含む `test_main.py` ファイルを作成し、`main` モジュール (`main.py`) から `app` をインポートします: ```Python {!../../docs_src/app_testing/test_main.py!} ``` ## テスト: 例の拡張
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.8K bytes - Viewed (0) -
misc/cgo/gmp/fib.go
//go:build ignore // Compute Fibonacci numbers with two goroutines // that pass integers back and forth. No actual // concurrency, just threads and synchronization // and foreign code on multiple pthreads. package main import ( big "." "runtime" ) func fibber(c chan *big.Int, out chan string, n int64) { // Keep the fibbers in dedicated operating system // threads, so that this program tests coordination
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Apr 10 22:32:35 UTC 2023 - 919 bytes - Viewed (0) -
.github/actions/notify-translations/Dockerfile
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Sep 28 19:51:39 UTC 2023 - 138 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
*/ package org.codelibs.fess.util; import java.time.LocalDateTime; import java.time.ZonedDateTime; import java.util.Date; import org.apache.commons.io.FileUtils; import org.codelibs.core.collection.Maps; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.sai.internal.ir.debug.ObjectSizeCalculator; import com.google.common.collect.Lists; public class MemoryUtilTest extends UnitFessTestCase {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashMultiset.java
Iterables.addAll(multiset, elements); return multiset; } private HashMultiset() { super(new HashMap<E, Count>()); } private HashMultiset(int distinctElements) { super(Maps.<E, Count>newHashMapWithExpectedSize(distinctElements)); } /** * @serialData the number of distinct elements, the first element, its count, the second element, * its count, and so on */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/error/badRequest.jsp
rel="stylesheet" type="text/css" /> </head> <body class="error"> <jsp:include page="../header.jsp" /> <main class="container"> <div class="text-center"> <h2> <la:message key="labels.request_error_title" /> </h2> <div class="errormessage"><la:message key="labels.bad_request" /></div> </div> </main> <jsp:include page="../footer.jsp" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 1.4K bytes - Viewed (0) -
.idea/scopes/Gradle_public_API.xml
<component name="DependencyValidationManager"> <!-- The source of truth for this pattern is `build-logic/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt` file, please keep them in sync --> <scope name="Gradle public API"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 15:08:47 UTC 2024 - 1.5K bytes - Viewed (0) -
docs/uk/docs/index.md
``` </div> <details markdown="1"> <summary>Про команди <code>uvicorn main:app --reload</code>...</summary> Команда `uvicorn main:app` посилається на: * `main`: файл `main.py` ("Модуль" Python). * `app`: об’єкт створений усередині `main.py` рядком `app = FastAPI()`. * `--reload`: перезапускає сервер після зміни коду. Використовуйте виключно для розробки. </details> ### Перевірте
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 24.2K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
</expression> <expression> <syntax>project.attachedArtifacts</syntax> <description> <![CDATA[ This is a list of attachments to the main artifact produced by building the current POM. Attachments are derived works, based on the main build process, such as an ejb-client jar, project sources jar, etc. ]]></description> </expression> </expressions>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0)