Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Transpose (0.06 sec)

  1. guava-tests/test/com/google/common/collect/TransposedTableTest.java

        Table<String, Integer, Character> transpose = transpose(original);
        original.put(1, "foo", 'a');
        assertSame(original.columnKeySet(), transpose.rowKeySet());
        assertSame(original.rowKeySet(), transpose.columnKeySet());
        assertSame(original.columnMap(), transpose.rowMap());
        assertSame(original.rowMap(), transpose.columnMap());
        assertSame(original.values(), transpose.values());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/TablesTransposeColumnTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Tables.transpose;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.TableCollectionTest.ColumnTests;
    
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/TablesTransposeColumnTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Tables.transpose;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.TableCollectionTest.ColumnTests;
    
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Tables.java

       * instance, {@code rowKeySet().iterator()} supports {@code remove()} but {@code
       * columnKeySet().iterator()} doesn't. With a transposed {@link HashBasedTable}, it's the other
       * way around.
       */
      public static <R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          Table<C, R, V> transpose(Table<R, C, V> table) {
        return (table instanceof TransposeTable)
            ? ((TransposeTable<R, C, V>) table).original
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

    import static com.google.common.collect.Tables.immutableCell;
    import static com.google.common.collect.Tables.transformValues;
    import static com.google.common.collect.Tables.transpose;
    import static com.google.common.collect.Tables.unmodifiableRowSortedTable;
    import static com.google.common.collect.Tables.unmodifiableTable;
    import static java.util.Collections.sort;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/TableCollectionTest.java

    import static com.google.common.collect.Tables.immutableCell;
    import static com.google.common.collect.Tables.transformValues;
    import static com.google.common.collect.Tables.transpose;
    import static com.google.common.collect.Tables.unmodifiableRowSortedTable;
    import static com.google.common.collect.Tables.unmodifiableTable;
    import static java.util.Collections.sort;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. RELEASE.md

    *  Support for Python 3.7 has been removed. We are not releasing any more patches for Python 3.7.
    
    *   `tf.lite`:
    
        *   Add 16-bit float type support for built-in op `fill`.
        *   Transpose now supports 6D tensors.
        *   Float LSTM now supports diagonal recurrent tensors: https://arxiv.org/abs/1903.08023
    
    *   `tf.experimental.dtensor`:
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
Back to top