- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 552 for lport (0.02 sec)
-
docs/de/docs/deployment/server-workers.md
``` * `--bind`: Das teilt Gunicorn die IP und den Port mit, welche abgehรถrt werden sollen, wobei ein Doppelpunkt (`:`) verwendet wird, um die IP und den Port zu trennen. * Wenn Sie Uvicorn direkt ausfรผhren wรผrden, wรผrden Sie anstelle von `--bind 0.0.0.0:80` (die Gunicorn-Option) stattdessen `--host 0.0.0.0` und `--port 80` verwenden.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13K bytes - Viewed (0) -
test-site/activator.bat
echo list-templates Print all available template names echo help Print this message echo. echo Options: echo -jvm-debug [port] Turn on JVM debugging, open at the given port. Defaults to 9999 if no port given. echo. echo Environment variables ^(read from context^): echo JAVA_OPTS Environment variable, if unset uses ""
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 7.2K bytes - Viewed (0) -
istioctl/pkg/checkinject/testdata/check-inject/never-match-injector.yaml
webhooks: - admissionReviewVersions: - v1beta1 - v1 clientConfig: service: name: istiod namespace: istio-system path: /inject port: 443 failurePolicy: Fail matchPolicy: Equivalent name: rev.namespace.sidecar-injector.istio.io namespaceSelector: matchLabels: istio.io/deactivated: never-match objectSelector:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 3.1K bytes - Viewed (0) -
docs/em/docs/tutorial/debugging.md
```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ๐ ๐. --- ๐ ๐ ๐ซ ๐จ ๐ฅ ๐ ๐ ๐ ๐น (๐). , ๐ฅ ๐ โ๏ธ โ1๏ธโฃ ๐ `importer.py` โฎ๏ธ: ```Python from myapp import app # Some more code ``` ๐ ๐ผ, ๐ง ๐ข ๐ `myapp.py` ๐ ๐ซ โ๏ธ ๐ข `__name__` โฎ๏ธ ๐ฒ `"__main__"`. , โธ: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` ๐ ๐ซ ๐ ๏ธ. /// info
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/base/Enums.java
private Enums() {} /** * Returns the {@link Field} in which {@code enumValue} is defined. For example, to get the {@code * Description} annotation on the {@code GOLF} constant of enum {@code Sport}, use {@code * Enums.getField(Sport.GOLF).getAnnotation(Description.class)}. * * @since 12.0 */ @GwtIncompatible // reflection public static Field getField(Enum<?> enumValue) { Class<?>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 26 11:56:44 UTC 2023 - 5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/HttpUrl.kt
?: throw IllegalArgumentException("unexpected host: $host") this.host = encoded } fun port(port: Int) = apply { require(port in 1..65535) { "unexpected port: $port" } this.port = port } fun addPathSegment(pathSegment: String) = apply {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 09 12:33:05 UTC 2024 - 63.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
private static final String TOMCAT_CONFIG_PATH = "tomcat.config.path"; public FessBoot(final int port, final String contextPath) { super(port, contextPath); } @Override protected String prepareWebappPath() { final String value = System.getProperty(FESS_WEBAPP_PATH); if (value != null) { return value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
cmd/sftp-server.go
} port, err = strconv.Atoi(portStr) if err != nil { logger.Fatal(fmt.Errorf("invalid arguments passed to --sftp=%s (%v)", arg, err), "unable to start SFTP server") } if port < 1 || port > 65535 { logger.Fatal(fmt.Errorf("invalid arguments passed to --sftp=%s, (port number must be between 1 to 65535)", arg), "unable to start SFTP server") }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 20 20:00:29 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
return getChallenge(dc, 0); } public static byte[] getChallenge( UniAddress dc, int port ) throws SmbException, UnknownHostException { SmbTransport trans = SmbTransport.getSmbTransport( dc, port ); trans.connect(); return trans.server.encryptionKey; } /** * Authenticate arbitrary credentials represented by the
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 18.6K bytes - Viewed (0)