- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 209 for homes (0.06 sec)
-
okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
hokkaido.jp hokksund.no hokuryu.hokkaido.jp hokuto.hokkaido.jp hokuto.yamanashi.jp hol.no holdings hole.no holiday holmestrand.no holtalen.no holtålen.no holy.jp home-webserver.de home.dyndns.org homebuilt.aero homedepot homedns.org homeftp.net homeftp.org homegoods homeip.net homelink.one homelinux.com homelinux.net homelinux.org homeoffice.gov.uk homes homesecuritymac.com homesecuritypc.com homesense homesklep.pl homeunix.com homeunix.net homeunix.org honai.ehime.jp honbetsu.hokkaido.jp honda honefoss.no...
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 40.4K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
To create a virtual environment, you can use the `venv` module that comes with Python. <div class="termy"> ```console $ python -m venv .venv ``` </div> /// details | What that command means * `python`: use the program called `python` * `-m`: call a module as a script, we'll tell it which module next * `venv`: use the module called `venv` that normally comes installed with Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 24 03:16:23 UTC 2024 - 21.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params.md
{!../../docs_src/path_params/tutorial004.py!} ``` /// tip | "Dica" /// Você poderia precisar que o parâmetro contivesse `/home/johndoe/myfile.txt`, com uma barra no inicio (`/`). Neste caso, a URL deveria ser: `/files//home/johndoe/myfile.txt`, com barra dupla (`//`) entre `files` e `home`. ## Recapitulando Com o **FastAPI**, usando as declarações de tipo do Python, você obtém:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
// file assertUrlLink("file:/home/taro/test.txt", // "file://home/taro/test.txt"); assertUrlLink("file:/home/taro/あ.txt", // "file://home/taro/あ.txt"); assertUrlLink("file:/home/taro/%E3%81%82.txt", // "file://home/taro/あ.txt"); // smb->file assertUrlLink("smb:/home/taro/test.txt", // "file://home/taro/test.txt");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 15.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
} if (lhs == null) { // lhs (null) comes just before justAfterNull. // If rhs is b, lhs comes first. if (rhs.equals(justAfterNull)) { return -1; } return justAfterNull.compareTo(rhs); } if (rhs == null) { // rhs (null) comes just before justAfterNull. // If lhs is b, rhs comes first. if (lhs.equals(justAfterNull)) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 17.5K bytes - Viewed (0) -
mvnw
. /etc/mavenrc fi if [ -f "$HOME/.mavenrc" ]; then . "$HOME/.mavenrc" fi fi # OS specific support. $var _must_ be set to either true or false. cygwin=false darwin=false mingw=false case "$(uname)" in CYGWIN*) cygwin=true ;; MINGW*) mingw=true ;; Darwin*) darwin=true # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/ClassPath.java
*/ static final class LocationInfo { final File home; private final ClassLoader classloader; LocationInfo(File home, ClassLoader classloader) { this.home = checkNotNull(home); this.classloader = checkNotNull(classloader); } /** Returns the file this location is from. */ public final File file() { return home; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 24.9K bytes - Viewed (0) -
docs/de/docs/tutorial/path-params.md
{!../../docs_src/path_params/tutorial004.py!} ``` /// tip | "Tipp" Der Parameter könnte einen führenden Schrägstrich (`/`) haben, wie etwa in `/home/johndoe/myfile.txt`. In dem Fall wäre die URL: `/files//home/johndoe/myfile.txt`, mit einem doppelten Schrägstrich (`//`) zwischen `files` und `home`. /// ## Zusammenfassung In **FastAPI** erhalten Sie mittels kurzer, intuitiver Typdeklarationen:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "file:/usr/test/dep.jar") .toURI()); assertEquals( new File("/home/build/a.jar").toURI(), ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "a.jar").toURI()); assertEquals( new File("/home/build/x/y/z").toURI(), ClassPath.getClassPathEntry(new File("/home/build/outer.jar"), "x/y/z").toURI());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 22:09:38 UTC 2024 - 27.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
exp = "example.com/index.html"; assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8")); url = "file:/home/user"; exp = "/home/user"; assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8")); url = "file:/c:/home/user"; exp = "c:\\home\\user"; assertEquals(exp, transformer.getSiteOnFile(url, "UTF-8")); url = "file:/c:/"; exp = "c:\\";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 9.8K bytes - Viewed (0)