- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 1,164 for Lint (0.05 seconds)
-
scripts/lint.sh
Sofie Van Landeghem <******@****.***> 1774370372 +0100
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Mar 24 16:39:32 GMT 2026 - 142 bytes - Click Count (0) -
android-test-app/build.gradle.kts
setProguardFiles(listOf(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")) testProguardFiles("test-proguard-rules.pro") } } lint { abortOnError = true } } dependencies { implementation(libs.playservices.safetynet) implementation(projects.okhttp) implementation(libs.androidx.activity)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Feb 07 06:56:34 GMT 2026 - 1.2K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts
jvmSignature(library("codehaus-signature-java18")) { artifact { type = "signature" } } "lintChecks"(library("androidx-lint-gradle")) } configure<com.android.build.api.dsl.Lint> { xmlReport = true checkDependencies = true } configure<com.diffplug.gradle.spotless.SpotlessExtension> { kotlin { target("src/**/*.kt")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 2.9K bytes - Click Count (0) -
fastapi/.agents/skills/fastapi/references/other-tools.md
# Other Tools ## uv If uv is available, use it to manage dependencies. ## Ruff If Ruff is available, use it to lint and format the code. Consider enabling the FastAPI rules. ## ty If ty is available, use it to check types. ## Asyncer When needing to run blocking code inside of async functions, or async code inside of blocking functions, suggest using Asyncer. Prefer it over AnyIO or asyncio. Install:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 01 10:05:57 GMT 2026 - 1.5K bytes - Click Count (0) -
pyproject.toml
"docs_src/stream_data/tutorial001_py310.py" = ["UP028"] "docs_src/stream_data/tutorial002_py310.py" = ["UP028"] "docs_src/server_sent_events/tutorial001_py310.py" = ["UP028"] [tool.ruff.lint.isort] known-third-party = ["fastapi", "pydantic", "starlette"] [tool.ruff.lint.pyupgrade] # Preserve types, even if a file imports `from __future__ import annotations`. keep-runtime-typing = true [tool.inline-snapshot] # default-flags=["fix"]
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 12:36:49 GMT 2026 - 10.3K bytes - Click Count (0) -
gradle/libs.versions.toml
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" } ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } gradle-lint = { id = "com.android.lint", version.ref = "lint-gradle" } maven-publish = { id = "com.vanniktech.maven.publish.base", version.ref = "maven-publish" } maven-sympathy = { id = "io.github.usefulness.maven-sympathy", version.ref = "maven-sympathy" }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 31 22:01:48 GMT 2026 - 12K bytes - Click Count (0) -
build-logic/build.gradle.kts
implementation(libs.gradlePlugin.graalvm) implementation(libs.gradlePlugin.ksp) implementation(libs.gradlePlugin.mrjar) implementation(libs.gradlePlugin.tapmoc) implementation(libs.androidx.lint.gradle) implementation(libs.kotlin.gradle.plugin.api)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 18 18:05:02 GMT 2026 - 1.1K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.34.md
- Prevented any type of CPU/Memory alignment or hint generation with the Topology Manager from the CPU or Memory Manager when pod-level resources were used in the Pod spec. ([#133279](https://github.com/kubernetes/kubernetes/pull/133279), [@ffromani](https://github.com/ffromani)) [SIG Node and Testing]...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Mar 19 03:19:43 GMT 2026 - 368.7K bytes - Click Count (2) -
CHANGELOG/CHANGELOG-1.32.md
- Implemented a queueing hint for PersistentVolumeClaim/Add event in the `CSILimit` plugin. ([#124703](https://github.com/kubernetes/kubernetes/pull/124703), [@utam0k](https://github.com/utam0k)) [SIG Scheduling and Storage]
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Feb 26 23:58:21 GMT 2026 - 470.5K bytes - Click Count (0) -
docs/en/docs/release-notes.md
from typing import Annotated, Literal from fastapi import FastAPI, Query from pydantic import BaseModel, Field app = FastAPI() class FilterParams(BaseModel): limit: int = Field(100, gt=0, le=100) offset: int = Field(0, ge=0) order_by: Literal["created_at", "updated_at"] = "created_at" tags: list[str] = [] @app.get("/items/")
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:07:04 GMT 2026 - 631K bytes - Click Count (0)