Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 123abc (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top