- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 2,219 for intervals (0.06 sec)
-
docs/em/docs/history-design-future.md
๐ฅ ๐ฅ ๐ ๐ ๐. ## ๐ ๐ค โ๏ธ ๐ ๐ โฎ๏ธ ๐ ๐ ๐ 1๏ธโฃ2๏ธโฃ๐๏ธ (๐ฐ ๐ซ, ๐ โ๏ธ, ๐ ๐จโ๐ญ, โ ๐ฝ, โ๏ธ), โ๏ธ ๐ ๐ ๐ฉโ๐ป. ๐ ๐, ๐ค ๐ช ๐ฌ, ๐ฏ & โ๏ธ ๐ ๐. ๐ **FastAPI** ๐ ๐ ๐ ๐ฎ โช. ๐โโ ๐ [๐](alternatives.md){.internal-link target=_blank}: <blockquote markdown="1"> **FastAPI** ๐ซ๐ ๐ ๐ฅ ๐ซ โฎ๏ธ ๐ท ๐. ๐ค โ๏ธ ๐ ๐งฐ โ โญ ๐ โ๏ธ โน ๐ฎ ๐ฎ ๐.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 3.4K bytes - Viewed (0) -
docs/pt/docs/advanced/middleware.md
# Middleware Avanรงado No tutorial principal vocรช leu como adicionar [Middleware Personalizado](../tutorial/middleware.md){.internal-link target=_blank} ร sua aplicaรงรฃo. E entรฃo vocรช tambรฉm leu como lidar com [CORS com o `CORSMiddleware`](../tutorial/cors.md){.internal-link target=_blank}. Nesta seรงรฃo, veremos como usar outros middlewares. ## Adicionando middlewares ASGI
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 30 20:00:22 UTC 2024 - 4.3K bytes - Viewed (0) -
cmd/admin-server-info.go
package cmd import ( "math" "net/http" "os" "runtime" "runtime/debug" "sort" "strings" "time" "github.com/minio/madmin-go/v3" "github.com/minio/minio/internal/config" "github.com/minio/minio/internal/kms" xnet "github.com/minio/pkg/v3/net" ) // getLocalServerProperty - returns madmin.ServerProperties for only the // local endpoints from given list of endpoints
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl
typedef struct { uint32_t elapsedt; uint32_t msecs; uint32_t hours; uint32_t mins; uint32_t secs; uint32_t hunds; uint32_t timezone; uint32_t tinterval; uint32_t day; uint32_t month; uint32_t year; uint32_t weekday; } TimeOfDayInfo; [op(0x1c)] int RemoteTOD([in,string,unique] wchar_t *servername, [out,unique] TimeOfDayInfo *info);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
docs_src/dependencies/tutorial008d_an_py39.py
app = FastAPI() class InternalError(Exception): pass def get_username(): try: yield "Rick" except InternalError: print("We don't swallow the internal error here, we raise again ๐") raise @app.get("/items/{item_id}") def get_item(item_id: str, username: Annotated[str, Depends(get_username)]): if item_id == "portal-gun": raise InternalError(
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Feb 24 23:06:37 UTC 2024 - 734 bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/io/FaultyFileSystem.kt
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.internal.io import java.io.IOException import okio.Buffer import okio.FileSystem import okio.ForwardingFileSystem import okio.ForwardingSink import okio.Path import okio.Sink
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.8K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/internal/duplex/MockStreamHandler.kt
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package mockwebserver3.internal.duplex import java.io.IOException import java.util.concurrent.CountDownLatch import java.util.concurrent.FutureTask import java.util.concurrent.LinkedBlockingQueue import java.util.concurrent.TimeUnit
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.2K bytes - Viewed (0) -
cmd/kms-router.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "net/http" "github.com/klauspost/compress/gzhttp" "github.com/klauspost/compress/gzip" "github.com/minio/minio/internal/logger" "github.com/minio/mux" ) const ( kmsPathPrefix = minioReservedBucketPath + "/kms" kmsAPIVersion = "v1" kmsAPIVersionPrefix = SlashSeparator + kmsAPIVersion )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 07 23:55:37 UTC 2024 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.internal; import java.util.ArrayList; import java.util.List; import java.util.regex.Pattern; /** * Helper class to format multiline messages to the console */ public class MultilineMessageHelper {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java
import me.champeau.gradle.japicmp.report.PostProcessViolationsRule; import me.champeau.gradle.japicmp.report.ViolationCheckContextWithViolations; import org.gradle.util.internal.CollectionUtils; import java.util.HashMap; import java.util.Map; import java.util.Set; import static gradlebuild.binarycompatibility.upgrades.UpgradedProperties.OLD_REMOVED_ACCESSORS_OF_UPGRADED_PROPERTIES;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:30:48 UTC 2024 - 3.5K bytes - Viewed (0)