Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Clips (0.19 sec)

  1. android/guava/src/com/google/common/collect/Tables.java

        }
    
        @Override
        public String toString() {
          return "(" + getRowKey() + "," + getColumnKey() + ")=" + getValue();
        }
      }
    
      /**
       * Creates a transposed view of a given table that flips its row and column keys. In other words,
       * calling {@code get(columnKey, rowKey)} on the generated table always returns the same value as
       * calling {@code get(rowKey, columnKey)} on the original table. Updating the original table
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 22:45:41 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her eye fell upon a little bottle that stood near the looking-
    glass.  There was no label this time with the words `DRINK ME,'
    but nevertheless she uncorked it and put it to her lips.  `I know
    SOMETHING interesting is sure to happen,' she said to herself,
    `whenever I eat or drink anything; so I'll just see what this
    bottle does.  I do hope it'll make me grow large again, for
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    her eye fell upon a little bottle that stood near the looking-
    glass.  There was no label this time with the words `DRINK ME,'
    but nevertheless she uncorked it and put it to her lips.  `I know
    SOMETHING interesting is sure to happen,' she said to herself,
    `whenever I eat or drink anything; so I'll just see what this
    bottle does.  I do hope it'll make me grow large again, for
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/ReaderInputStream.java

        }
      }
    
      /** Returns the number of elements between the limit and capacity. */
      private static int availableCapacity(Buffer buffer) {
        return buffer.capacity() - buffer.limit();
      }
    
      /**
       * Flips the buffer output buffer so we can start reading bytes from it. If we are starting to
       * drain because there was overflow, and there aren't actually any characters to drain, then the
       * overflow must be due to a small output buffer.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 28 20:13:02 GMT 2023
    - 9.3K bytes
    - Viewed (0)
Back to top