Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1511 - 1520 of 3,625 for Gist (0.12 seconds)

  1. docs/en/docs/deployment/fastapicloud.md

    # FastAPI Cloud { #fastapi-cloud }
    
    You can deploy your FastAPI app to [FastAPI Cloud](https://fastapicloud.com) with **one command**, go and join the waiting list if you haven't. πŸš€
    
    ## Login { #login }
    
    Make sure you already have a **FastAPI Cloud** account (we invited you from the waiting list πŸ˜‰).
    
    Then log in:
    
    <div class="termy">
    
    ```console
    $ fastapi login
    
    You are logged in to FastAPI Cloud πŸš€
    ```
    
    </div>
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rerun/executer/RerunTestExecuter.java

    import org.gradle.api.internal.tasks.testing.TestResultProcessor;
    import org.gradle.internal.id.CompositeIdGenerator;
    import org.gradle.process.internal.ExecException;
    
    import java.util.Comparator;
    import java.util.List;
    import java.util.stream.Collectors;
    
    public final class RerunTestExecuter implements TestExecuter<JvmTestExecutionSpec> {
    
        private final TestRerunTaskExtension extension;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  3. docs_src/request_files/tutorial002_an_py310.py

    from fastapi.responses import HTMLResponse
    
    app = FastAPI()
    
    
    @app.post("/files/")
    async def create_files(files: Annotated[list[bytes], File()]):
        return {"file_sizes": [len(file) for file in files]}
    
    
    @app.post("/uploadfiles/")
    async def create_upload_files(files: list[UploadFile]):
        return {"filenames": [file.filename for file in files]}
    
    
    @app.get("/")
    async def main():
        content = """
    <body>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 826 bytes
    - Click Count (0)
  4. okhttp/src/androidMain/baseline-prof.txt

    HSPLkotlin/collections/SetsKt__SetsKt;->build(Ljava/util/List;)Ljava/util/List;
    HSPLkotlin/collections/SetsKt__SetsKt;->listOf(Ljava/lang/Object;)Ljava/util/List;
    HSPLkotlin/collections/SetsKt__SetsKt;->listOfNotNull([Ljava/lang/Object;)Ljava/util/List;
    HSPLkotlin/collections/SetsKt__SetsKt;->optimizeReadOnlyList(Ljava/util/List;)Ljava/util/List;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Dec 30 23:28:56 GMT 2024
    - 127.9K bytes
    - Click Count (1)
  5. src/test/java/org/codelibs/fess/app/pager/RelatedQueryPagerTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.pager;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class RelatedQueryPagerTest extends UnitFessTestCase {
    
        public void test_RelatedQueryPager() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/pager/SchedulerPagerTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.pager;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SchedulerPagerTest extends UnitFessTestCase {
    
        public void test_SchedulerPager() {
            SchedulerPager schedulerPager = new SchedulerPager();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/artifact/transform/TransformationManagerTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.transform;
    
    import javax.inject.Inject;
    
    import java.util.List;
    
    import org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformation;
    import org.apache.maven.repository.legacy.resolver.transform.ArtifactTransformationManager;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/composition/DependencyManagementImporter.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.composition;
    
    import java.util.List;
    
    import org.apache.maven.model.DependencyManagement;
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 2K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectIndex.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.lifecycle.internal;
    
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.apache.maven.lifecycle.internal.builder.BuilderCommon;
    import org.apache.maven.project.MavenProject;
    
    /**
     * <p>
     * Provides the positional index of the project
     * </p>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2K bytes
    - Click Count (0)
  10. docs/ko/docs/python-types.md

    μ΄λ ‡κ²Œ νƒ€μž… λ§€κ°œλ³€μˆ˜λ₯Ό 받을 수 μžˆλŠ” νƒ€μž…μ„ **Generic types** λ˜λŠ” **Generics**라고 λΆ€λ¦…λ‹ˆλ‹€.
    
    λŒ€κ΄„ν˜Έμ™€ λ‚΄λΆ€ νƒ€μž…μ„ μ‚¬μš©ν•΄ λ™μΌν•œ λ‚΄μž₯ νƒ€μž…λ“€μ„ μ œλ„€λ¦­μœΌλ‘œ μ‚¬μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€:
    
    * `list`
    * `tuple`
    * `set`
    * `dict`
    
    #### List { #list }
    
    예λ₯Ό λ“€μ–΄, `str`의 `list`인 λ³€μˆ˜λ₯Ό μ •μ˜ν•΄λ΄…μ‹œλ‹€.
    
    같은 콜둠(`:`) λ¬Έλ²•μœΌλ‘œ λ³€μˆ˜λ₯Ό μ„ μ–Έν•©λ‹ˆλ‹€.
    
    νƒ€μž…μœΌλ‘œ `list`λ₯Ό λ„£μŠ΅λ‹ˆλ‹€.
    
    `list`λŠ” λ‚΄λΆ€ νƒ€μž…μ„ ν¬ν•¨ν•˜λŠ” νƒ€μž…μ΄λ―€λ‘œ, κ·Έ νƒ€μž…λ“€μ„ λŒ€κ΄„ν˜Έ μ•ˆμ— λ„£μŠ΅λ‹ˆλ‹€:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
Back to Top