Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ababab (1.26 sec)

  1. src/testing/testing.go

    		// AAA to stdout and BBB to stderr simultaneously produces
    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    		// However, the exception to this is when the pipe fills: in that
    		// case, Go's use of non-blocking I/O means that writing AAA
    		// or BBB might be split across multiple system calls, making it
    		// entirely possible to get output like AABBBA. The same problem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * the end of the string. For example:
       *
       * <pre>{@code
       * CharMatcher.anyOf("ab").trimTrailingFrom("abacatbab")
       * }</pre>
       *
       * ... returns {@code "abacat"}.
       */
      public String trimTrailingFrom(CharSequence sequence) {
        int len = sequence.length();
        for (int last = len - 1; last >= 0; last--) {
          if (!matches(sequence.charAt(last))) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top