Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Pipes (0.01 seconds)

  1. android/guava/src/com/google/common/io/Files.java

        if (file1 == file2 || file1.equals(file2)) {
          return true;
        }
    
        /*
         * Some operating systems may return zero as the length for files denoting system-dependent
         * entities such as devices or pipes, in which case we must fall back on comparing the bytes
         * directly.
         */
        long len1 = file1.length();
        long len2 = file2.length();
        if (len1 != 0 && len2 != 0 && len1 != len2) {
          return false;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 05 22:13:21 GMT 2026
    - 32.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/curl/io/IOIntegrationTest.java

        @Test
        public void test_UrlWithSpecialCharacters_ThroughRealConnectPath() throws Exception {
            // ## Arrange ##
            // URLs with special characters (spaces, curly braces, pipes) must be accepted
            // by the real connect() path using new URL()
            String[] specialUrls = { "http://localhost:9200/{index}/_search", "http://example.com/path?q=a|b",
    Created: Thu Apr 02 15:34:12 GMT 2026
    - Last Modified: Sat Mar 21 12:00:34 GMT 2026
    - 44.1K bytes
    - Click Count (0)
Back to Top