- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 174 for discussion (0.09 seconds)
-
.github/ISSUE_TEMPLATE/privileged.yml
value: | Thanks for your interest in FastAPI! π If you are not @tiangolo or he didn't ask you directly to create an issue here, please start the conversation in a [Question in GitHub Discussions](https://github.com/fastapi/fastapi/discussions/categories/questions) instead. - type: checkboxes id: privileged attributes: label: Privileged issue description: Confirm that you are allowed to create an issue here.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Jul 29 23:35:07 GMT 2024 - 888 bytes - Click Count (1) -
architecture/standards/0007-java-pre-requisite.md
## Status - PROPOSED on 2024-12-20 ## Context ### Embedding a Java runtime in the Gradle distribution There have been discussions on embedding a Java runtime in the Gradle distribution. This would allow users to run Gradle without having to install a Java runtime beforehand. This capability could help increase Gradle adoption outside of the JVM ecosystem.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.2K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/config.yml
blank_issues_enabled: false contact_links: - name: MinIO Community Support url: https://slack.min.io about: Community support via Slack - for questions and discussions - name: MinIO Enterprise Support (SUBNET) url: https://min.io/pricingCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Oct 15 17:29:55 GMT 2025 - 343 bytes - Click Count (0) -
docs/en/docs/js/init_kapa_widget.js
script.setAttribute("data-modal-disclaimer", "AI-generated answers based on FastAPI [documentation](https://fastapi.tiangolo.com/) and [community discussions](https://github.com/fastapi/fastapi/discussions). Always verify important information."); script.async = true; document.head.appendChild(script);
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 18 15:26:13 GMT 2026 - 2.3K bytes - Click Count (0) -
tests/test_no_schema_split.py
# Test with parts from, and to verify the report in: # https://github.com/fastapi/fastapi/discussions/14177 # Made an issue in: # https://github.com/fastapi/fastapi/issues/14247 from enum import Enum from fastapi import FastAPI from fastapi.testclient import TestClient from inline_snapshot import snapshot from pydantic import BaseModel, Field class MessageEventType(str, Enum): alpha = "alpha" beta = "beta"
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 14:34:02 GMT 2026 - 6.5K bytes - Click Count (0) -
.github/workflows/notify-translations.yml
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 10 22:02:57 GMT 2026 - 1.6K bytes - Click Count (0) -
tests/test_list_bytes_file_order_preserved_issue_14811.py
""" Regression test: preserve order when using list[bytes] + File() See https://github.com/fastapi/fastapi/discussions/14811 Fixed in PR: https://github.com/fastapi/fastapi/pull/14884 """ from typing import Annotated import anyio import pytest from fastapi import FastAPI, File from fastapi.testclient import TestClient from starlette.datastructures import UploadFile as StarletteUploadFile def test_list_bytes_file_preserves_order(
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 10 12:14:38 GMT 2026 - 1.4K bytes - Click Count (0) -
docs/ru/docs/advanced/advanced-dependencies.md
Π’Π°ΠΊ ΡΠ΅ΡΡΠΈΡ ΠΎΡΠ²ΠΎΠ±ΠΎΠ΄ΠΈΡ ΠΏΠΎΠ΄ΠΊΠ»ΡΡΠ΅Π½ΠΈΠ΅ ΠΊ Π±Π°Π·Π΅ Π΄Π°Π½Π½ΡΡ , ΠΈ Π΄ΡΡΠ³ΠΈΠ΅ Π·Π°ΠΏΡΠΎΡΡ ΡΠΌΠΎΠ³ΡΡ Π΅Π³ΠΎ ΠΈΡΠΏΠΎΠ»ΡΠ·ΠΎΠ²Π°ΡΡ. ΠΡΠ»ΠΈ Ρ Π²Π°Ρ Π΅ΡΡΡ Π΄ΡΡΠ³ΠΎΠΉ ΡΡΠ΅Π½Π°ΡΠΈΠΉ, Π³Π΄Π΅ Π½ΡΠΆΠ½ΠΎ ΡΠ°Π½Π½Π΅Π΅ Π·Π°Π²Π΅ΡΡΠ΅Π½ΠΈΠ΅ Π·Π°Π²ΠΈΡΠΈΠΌΠΎΡΡΠΈ Ρ `yield`, ΠΏΠΎΠΆΠ°Π»ΡΠΉΡΡΠ°, ΡΠΎΠ·Π΄Π°ΠΉΡΠ΅ [Π²ΠΎΠΏΡΠΎΡ Π² GitHub Discussions](https://github.com/fastapi/fastapi/discussions/new?category=questions) Ρ ΠΎΠΏΠΈΡΠ°Π½ΠΈΠ΅ΠΌ ΠΊΠΎΠ½ΠΊΡΠ΅ΡΠ½ΠΎΠ³ΠΎ ΠΊΠ΅ΠΉΡΠ° ΠΈ ΠΏΠΎΡΠ΅ΠΌΡ Π²Π°ΠΌ Π±ΡΠ»ΠΎ Π±Ρ ΠΏΠΎΠ»Π΅Π·Π½ΠΎ ΠΈΠΌΠ΅ΡΡ ΡΠ°Π½Π½Π΅Π΅ Π·Π°ΠΊΡΡΡΠΈΠ΅ Π΄Π»Ρ Π·Π°Π²ΠΈΡΠΈΠΌΠΎΡΡΠ΅ΠΉ Ρ `yield`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 14.1K bytes - Click Count (0) -
tests/test_security_scopes_sub_dependency.py
# Ref: https://github.com/fastapi/fastapi/discussions/6024#discussioncomment-8541913 from typing import Annotated import pytest from fastapi import Depends, FastAPI, Security from fastapi.security import SecurityScopes from fastapi.testclient import TestClient @pytest.fixture(name="call_counts") def call_counts_fixture(): return { "get_db_session": 0, "get_current_user": 0, "get_user_me": 0,
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 2.9K bytes - Click Count (0) -
README.md
- **Community Forum**: Engage with others on the [Gradle Forum](https://discuss.gradle.org/) for discussions, tips, and best practices. - **Community Slack**: [Join our Slack Channel](https://gradle.org/slack-invite) for real-time discussions, with specialized channels like `#github-integrations` for integration topics.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Feb 12 18:58:41 GMT 2026 - 7.8K bytes - Click Count (0)