- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 271 for slashes (0.04 sec)
-
android/guava/src/com/google/common/net/UrlEscapers.java
* Additionally, the escaper escapes the slash character ("/"). While slashes are acceptable in * URL paths, they are considered by the specification to be separators between "path segments." * This implies that, if you wish for your path to contain slashes, you must escape each segment * separately and then join them. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/net/UrlEscapers.java
* Additionally, the escaper escapes the slash character ("/"). While slashes are acceptable in * URL paths, they are considered by the specification to be separators between "path segments." * This implies that, if you wish for your path to contain slashes, you must escape each segment * separately and then join them. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
assertThat( base .newBuilder() .addPathSegments("/d") .build() .encodedPath, ).isEqualTo("/a/b/c//d") // Add a string with two slashes: resulting URL gains three slashes. assertThat( base .newBuilder() .addPathSegments("//") .build() .encodedPath, ).isEqualTo("/a/b/c///") assertThat(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Aug 04 07:38:48 UTC 2025 - 69.9K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
* * <ul> * <li>empty string becomes . * <li>. stays as . * <li>fold out ./ * <li>fold out ../ when possible * <li>collapse multiple slashes * <li>delete trailing slashes (unless the path is just "/") * </ul> * * <p>These heuristics do not always match the behavior of the filesystem. In particular, consider
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* Both the unnecessary port specification (`:80`) and the absent trailing slash (`/`) cause URI to * bucket the two URLs separately. This harms URI's usefulness in collections. Any application that * stores information-per-URL will need to either canonicalize manually, or suffer unnecessary * redundancy for such URLs. * * Because they don't attempt canonical form, these classes are surprisingly difficult to use
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
guava/src/com/google/common/io/Files.java
* * <ul> * <li>empty string becomes . * <li>. stays as . * <li>fold out ./ * <li>fold out ../ when possible * <li>collapse multiple slashes * <li>delete trailing slashes (unless the path is just "/") * </ul> * * <p>These heuristics do not always match the behavior of the filesystem. In particular, consider
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
} } /** * Traverses classes contained in a Jar file. * <p> * If the specified Jar file has the extension <code>.war</code>, only entries whose path starts with the prefix <code>WEB-INF/classes</code> are traversed. * The handler receives the entry name excluding the prefix. For example, if the Jar file contains <code>/WEB-INF/classes/ccc/ddd/Eee.class</code>,
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java
} public void testFindClassesToTest_withCorrespondingTestClassAndExplicitlyTested() { ImmutableList<Class<?>> classes = ImmutableList.of(Foo.class, FooTest.class); assertThat(findClassesToTest(classes, "testPublic")).isEmpty(); assertThat(findClassesToTest(classes, "testNotThere", "testPublic")).isEmpty(); } public void testFindClassesToTest_withCorrespondingTestClass_noTestName() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 02:48:50 UTC 2024 - 5.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
} // Test command list construction with target classes directory public void test_executeSuggestCreator_withTargetClassesDir() { createRequiredDirectories(); File targetDir = new File(System.getProperty("user.dir"), "target"); File targetClassesDir = new File(targetDir, "classes"); targetClassesDir.mkdirs(); mockProcessHelper.setExitValue(0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
buf.append("},"); final Classes classes = jvmStats.getClasses(); buf.append("\"classes\":{"); append(buf, "loaded", () -> classes.getLoadedClassCount()).append(','); append(buf, "total_loaded", () -> classes.getTotalLoadedClassCount()).append(','); append(buf, "unloaded", () -> classes.getUnloadedClassCount()); buf.append("},");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0)