- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 212 for Serve (0.02 seconds)
-
docs/en/docs/how-to/custom-docs-ui-assets.md
But it's possible to customize it, you can set a specific CDN, or serve the files yourself. ## Custom CDN for JavaScript and CSS { #custom-cdn-for-javascript-and-css }
Created: 2026-04-05 07:19 - Last Modified: 2026-03-05 18:13 - 7.5K bytes - Click Count (0) -
internal/http/server.go
srv.listener = listener srv.listenerMutex.Unlock() var l net.Listener = listener if tlsConfig != nil { l = tls.NewListener(listener, tlsConfig) } serve = func() error { return srv.Serve(l) } return serve, err } // Shutdown - shuts down HTTP server. func (srv *Server) Shutdown() error { srv.listenerMutex.Lock() if srv.listener == nil { srv.listenerMutex.Unlock()
Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 6.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java
* acquire(3) arrives. We serve this request out of storedPermits, and reduce that to 7.0 (how * this is translated to throttling time is discussed later). Immediately after, assume that an * acquire(10) request arriving. We serve the request partly from storedPermits, using all the * remaining 7.0 permits, and the remaining 3.0, we serve them by fresh permits produced by the * rate limiter. *
Created: 2026-04-03 12:43 - Last Modified: 2025-05-14 19:40 - 19.3K bytes - Click Count (0) -
docs/en/data/topic_repos.yml
- name: Hello-Python html_url: https://github.com/mouredev/Hello-Python stars: 34997 owner_login: mouredev owner_html_url: https://github.com/mouredev - name: serve html_url: https://github.com/jina-ai/serve stars: 21857 owner_login: jina-ai owner_html_url: https://github.com/jina-ai - name: HivisionIDPhotos html_url: https://github.com/Zeyi-Lin/HivisionIDPhotos stars: 20868
Created: 2026-04-05 07:19 - Last Modified: 2026-04-01 12:36 - 16K bytes - Click Count (0) -
docs/de/llm-prompt.md
* the worker process: der Workerprozess * the worker process: NOT der Arbeiterprozess * to commit: committen * to deploy (in the cloud): deployen * to modify: ändern * to serve (an application): bereitstellen * to serve (a response): ausliefern * to serve: NOT bedienen * to upgrade: aktualisieren * to wrap: wrappen * to wrap: NOT hüllen * `foo` as a `type`: `foo` vom Typ `type` * `foo` as a `type`: `foo`, ein `type`
Created: 2026-04-05 07:19 - Last Modified: 2025-12-29 18:54 - 9.8K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java
* */ @Deprecated public interface ClasspathTransformation { String ROLE = ClasspathTransformation.class.getName(); /** * Transform Graph into a Collection of metadata objects that * could serve as a classpath for a particular scope * * @param dirtyGraph - dependency graph * @param scope - which classpath to extract * @param resolve - whether to resolve artifacts.Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 1.7K bytes - Click Count (0) -
docs/en/docs/reference/staticfiles.md
# Static Files - `StaticFiles` You can use the `StaticFiles` class to serve static files, like JavaScript, CSS, images, etc. Read more about it in the [FastAPI docs for Static Files](https://fastapi.tiangolo.com/tutorial/static-files/). You can import it directly from `fastapi.staticfiles`: ```python from fastapi.staticfiles import StaticFiles ```
Created: 2026-04-05 07:19 - Last Modified: 2024-04-18 19:53 - 391 bytes - Click Count (0) -
scripts/docs.py
) raise typer.Exit(1) print("docs/en/mkdocs.yml is up to date ✅") @app.command() def serve() -> None: """ A quick server to preview a built site with translations. For development, prefer the command live (or just mkdocs serve). This is here only to preview a site with translations already built. Make sure you run the build-all command first. """Created: 2026-04-05 07:19 - Last Modified: 2026-03-05 17:46 - 25.4K bytes - Click Count (0) -
cmd/bucket-listobjects-handlers.go
if errCode != ErrNone { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(errCode), r.URL) return } // Validate the query params before beginning to serve the request. if s3Error := validateListObjectsArgs(prefix, marker, delimiter, encodingType, maxkeys); s3Error != ErrNone { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL) return }Created: 2026-04-05 19:28 - Last Modified: 2025-09-28 20:59 - 11.6K bytes - Click Count (0) -
docs/en/docs/tutorial/static-files.md
# Static Files { #static-files } You can serve static files automatically from a directory using `StaticFiles`. ## Use `StaticFiles` { #use-staticfiles } * Import `StaticFiles`. * "Mount" a `StaticFiles()` instance in a specific path. {* ../../docs_src/static_files/tutorial001_py310.py hl[2,6] *} /// note | Technical Details You could also use `from starlette.staticfiles import StaticFiles`.Created: 2026-04-05 07:19 - Last Modified: 2026-03-05 18:13 - 1.6K bytes - Click Count (0)