- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 568 for host16 (0.05 sec)
-
docs/en/docs/advanced/middleware.md
{* ../../docs_src/advanced_middleware/tutorial001.py hl[2,6] *} ## `TrustedHostMiddleware` Enforces that all incoming requests have a correctly set `Host` header, in order to guard against HTTP Host Header attacks. {* ../../docs_src/advanced_middleware/tutorial002.py hl[2,6:8] *} The following arguments are supported:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:45:50 UTC 2024 - 4K bytes - Viewed (0) -
docs/em/docs/deployment/server-workers.md
```Python import uvicorn.workers.UvicornWorker ``` * `--bind`: ๐ ๐ฌ ๐ ๐ข & โด ๐, โ๏ธ โค (`:`) ๐ ๐ข & โด. * ๐ฅ ๐ ๐โโ Uvicorn ๐, โฉ๏ธ `--bind 0.0.0.0:80` (๐ ๐) ๐ ๐ โ๏ธ `--host 0.0.0.0` & `--port 80`. ๐ข, ๐ ๐ช ๐ ๐ โซ๏ธ ๐ฆ **๐น** (๐ ๏ธ ๐) ๐ ๐ ๏ธ (โซ๏ธ ๐ข). ๐ ๐ช ๐ ๐: * ๐ **๐ ๏ธ ๐จโ๐ผ** โถ๏ธ โฎ๏ธ ๐น `19499` (๐ ๐ผ โซ๏ธ ๐ ๐ ๐ข). * โคด๏ธ โซ๏ธ โถ๏ธ `Listening at: http://0.0.0.0:80`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.2K bytes - Viewed (0) -
internal/event/target/webhook.go
store: queueStore, cancel: cancel, cancelCh: ctx.Done(), } // Calculate the webhook addr with the port number format target.addr = args.Endpoint.Host if _, _, err := net.SplitHostPort(args.Endpoint.Host); err != nil && strings.Contains(err.Error(), "missing port in address") { switch strings.ToLower(args.Endpoint.Scheme) { case "http": target.addr += ":80" case "https":
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} else { value = urlStr; } try { final URL url = new java.net.URL(value); final String host = url.getHost(); if (StringUtil.isBlank(host) || "http".equalsIgnoreCase(host) || "https".equalsIgnoreCase(host)) { return false; } } catch (final MalformedURLException e) { return false; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
cmd/ftp-server.go
tokens := strings.SplitN(arg, "=", 2) if len(tokens) != 2 { logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s", arg), "unable to start FTP server") } switch tokens[0] { case "address": host, portStr, err := net.SplitHostPort(tokens[1]) if err != nil { logger.Fatal(fmt.Errorf("invalid arguments passed to --ftp=%s (%v)", arg, err), "unable to start FTP server") } port, err = strconv.Atoi(portStr)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Mar 09 03:07:08 UTC 2024 - 4.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidCertificateChainCleaner.kt
/** * Android implementation of CertificateChainCleaner using direct Android API calls. * Not used if X509TrustManager doesn't implement [X509TrustManager.checkServerTrusted] with * an additional host param. */ internal class AndroidCertificateChainCleaner( private val trustManager: X509TrustManager, private val x509TrustManagerExtensions: X509TrustManagerExtensions, ) : CertificateChainCleaner() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/debugging/README.md
### Remotely Inspecting backend data
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Feb 25 01:17:53 UTC 2022 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
* the client and may be necessary for proper operation. * <p> * This class should be used in favor of <tt>InetAddress</tt> to resolve * hostnames on LANs and WANs that support a mixture of NetBIOS/WINS and * DNS resolvable hosts. */ public class UniAddress implements Address { /** * Check whether a hostname is actually an ip address * * @param hostname * @return whether this is an IP address */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/debugging.md
ใชใฎใงใไปฅไธ: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ใฏๅฎ่กใใใพใใ --- ใใฎใขใธใฅใผใซ (ใใกใคใซ) ใใคใณใใผใใใๅ ดๅใฏใใใใฏใชใใพใใใ ใใใใฃใฆใๆฌกใฎใใใชใใไธใคใฎใใกใคใซ `importer.py` ใใใๅ ดๅ: ```Python from myapp import app # Some more code ``` `myapp.py` ๅ ใฎ่ชๅๅคๆฐใซใฏใๅคใ `"__main __"` ใฎๅคๆฐ `__name__` ใฏใใใพใใใ ใใใใฃใฆใไปฅไธใฎ่ก: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ใฏๅฎ่กใใใพใใใ
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt
* @param origin when present, the [origin](http://tools.ietf.org/html/rfc6454) is typically * represented as a combination of scheme, host and port. When empty, the origin is that of * the `streamId`. * @param protocol an ALPN protocol, such as `h2`. * @param host an IP address or hostname. * @param port the IP port associated with the service.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 19.9K bytes - Viewed (0)