Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,024 for table (0.15 sec)

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

          assertEquals(2, table.size());
          assertEquals((Character) 'a', table.get("foo", 1));
          assertEquals((Character) 'b', table.get("bar", 1));
          assertNull(table.get("foo", 3));
          assertNull(table.remove(null, 1));
          assertNull(table.remove("foo", null));
          assertNull(table.remove(null, null));
          assertSize(2);
        } else {
          try {
            table.remove("foo", 3);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/classificationDeploymentMap.dfprop

    #
    # This property uses classification names of classificationDefinitionMap.
    # The table name '$$ALL$$' means all tables are target.
    # The table names and column names are treated as case insensitive.
    #
    # You don't need specify here about table classifications.
    # Because table classifications are auto-deployed by relation information.
    #
    # Specification:
    # map: {
    #     [table-name or $$ALL$$] = map:{
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 795 bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ArrayTableTest.java

        assertFalse(table.contains("foo", null));
        assertFalse(table.contains(null, 1));
        assertFalse(table.contains(null, null));
      }
    
      @Override
      public void testContainsRow() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertTrue(table.containsRow("foo"));
        assertTrue(table.containsRow("bar"));
        assertTrue(table.containsRow("cat"));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ArrayTableTest.java

        assertFalse(table.contains("foo", null));
        assertFalse(table.contains(null, 1));
        assertFalse(table.contains(null, null));
      }
    
      @Override
      public void testContainsRow() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        assertTrue(table.containsRow("foo"));
        assertTrue(table.containsRow("bar"));
        assertTrue(table.containsRow("cat"));
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  5. clause/update.go

    	}
    }
    
    // MergeClause merge update clause
    func (update Update) MergeClause(clause *Clause) {
    	if v, ok := clause.Expression.(Update); ok {
    		if update.Modifier == "" {
    			update.Modifier = v.Modifier
    		}
    		if update.Table.Name == "" {
    			update.Table = v.Table
    		}
    	}
    	clause.Expression = update
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Mar 09 09:07:00 GMT 2020
    - 737 bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ImmutableTableTest.java

      }
    
      public void testCopyOfSparse() {
        Table<Character, Integer, String> table = TreeBasedTable.create();
        table.put('x', 2, "foo");
        table.put('r', 1, "bar");
        table.put('c', 3, "baz");
        table.put('b', 7, "cat");
        table.put('e', 5, "dog");
        table.put('c', 0, "axe");
        table.put('e', 3, "tub");
        table.put('r', 4, "foo");
        table.put('x', 5, "bar");
        validateTableCopies(table);
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 20K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/TreeBasedTableRowMapInterfaceTest.java

        table.put("c", "b", "a");
        table.put("b", "b", "x");
        table.put("b", "c", "y");
        table.put("b", "x", "n");
        table.put("a", "a", "d");
        table.row("b").subMap("c", "x").clear();
        assertEquals(table.row("b"), ImmutableMap.of("b", "x", "x", "n"));
        table.row("b").subMap("b", "y").clear();
        assertEquals(table.row("b"), ImmutableMap.of());
        assertFalse(table.backingMap.containsKey("b"));
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 29 15:15:31 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableTable.java

      }
    
      /**
       * Returns an immutable copy of the provided table.
       *
       * <p>The {@link Table#cellSet()} iteration order of the provided table determines the iteration
       * ordering of all views in the returned table. Note that some views of the original table and the
       * copied table may have different iteration orders. For more control over the ordering, create a
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 17.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      /** Fast matcher using a {@link BitSet} table of matching characters. */
      @GwtIncompatible // used only from other GwtIncompatible code
      private static final class BitSetMatcher extends NamedFastMatcher {
    
        private final BitSet table;
    
        private BitSetMatcher(BitSet table, String description) {
          super(description);
          if (table.length() + Long.SIZE < table.size()) {
            table = (BitSet) table.clone();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TablesTransformValuesColumnTest.java

      }
    
      @Override
      Table<String, Character, Integer> makeTable() {
        Table<String, Character, Integer> table = HashBasedTable.create();
        return Tables.transformValues(table, DIVIDE_BY_2);
      }
    
      @Override
      protected Map<String, Integer> makePopulatedMap() {
        Table<String, Character, Integer> table = HashBasedTable.create();
        table.put("one", 'a', 1);
        table.put("two", 'a', 2);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top