Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 123abc (0.06 sec)

  1. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            assertEquals("123 abc", documentHelper.getContent(null, responseData, " 123\nabc ", dataMap));
            assertEquals("123abc", documentHelper.getContent(null, responseData, " 123abc ", dataMap));
    
            assertEquals("!!", documentHelper.getContent(null, responseData, "!!!", dataMap));
            assertEquals("//", documentHelper.getContent(null, responseData, "///", dataMap));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    		}
    	}
    }
    
    var EqualFoldTests = []struct {
    	s, t string
    	out  bool
    }{
    	{"abc", "abc", true},
    	{"ABcd", "ABcd", true},
    	{"123abc", "123ABC", true},
    	{"αβδ", "ΑΒΔ", true},
    	{"abc", "xyz", false},
    	{"abc", "XYZ", false},
    	{"abcdefghijk", "abcdefghijX", false},
    	{"abcdefghijk", "abcdefghij\u212A", true},
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 19 19:09:04 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. cmd/signature-v4-utils_test.go

    	signedHeaders = append(signedHeaders, "expect")
    	// expected header values.
    	expectedHost := "play.min.io:9000"
    	expectedContentSha256 := "1234abcd"
    	expectedTime := UTCNow().Format(iso8601Format)
    	expectedTransferEncoding := "gzip"
    	expectedExpect := "100-continue"
    
    	r, err := http.NewRequest(http.MethodGet, "http://play.min.io:9000", nil)
    	if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 05 21:26:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

       */
      @Override
      public String toString() {
        return super.toString();
      }
    
      /**
       * Returns the Java Unicode escape sequence for the given {@code char}, in the form "\u12AB" where
       * "12AB" is the four hexadecimal digits representing the 16-bit code unit.
       */
      private static String showCharacter(char c) {
        String hex = "0123456789ABCDEF";
        char[] tmp = {'\\', 'u', '\0', '\0', '\0', '\0'};
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    	n2, err := w.ReadFrom(r)
    	if n2 != 4 || err != nil {
    		t.Fatalf("ReadFrom returned (%v, %v), want (4, nil)", n2, err)
    	}
    	w.Flush()
    	if got, want := buf.String(), "0123abcd"; got != want {
    		t.Fatalf("buf.Bytes() returned %q, want %q", got, want)
    	}
    }
    
    func TestWriterReadFromErrNoProgress(t *testing.T) {
    	buf := new(bytes.Buffer)
    	w := NewWriterSize(buf, 5)
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Nov 01 21:52:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    AB7A          ; mapped                 ; 13AA          # 8.0  CHEROKEE SMALL LETTER GO
    AB7B          ; mapped                 ; 13AB          # 8.0  CHEROKEE SMALL LETTER GU
    AB7C          ; mapped                 ; 13AC          # 8.0  CHEROKEE SMALL LETTER GV
    AB7D          ; mapped                 ; 13AD          # 8.0  CHEROKEE SMALL LETTER HA
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
Back to top