Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for Staples (0.2 sec)

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

        return Tables.transformValues(table, TableCollectionTest.DIVIDE_BY_2);
      }
    
      @Override
      protected Map<String, Integer> makePopulatedMap() {
        Table<Character, String, Integer> table = HashBasedTable.create();
        table.put('a', "one", 2);
        table.put('a', "two", 4);
        table.put('a', "three", 6);
        table.put('b', "four", 8);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. common/config/mdl.rb

    all
    rule 'MD002', :level => 1
    rule 'MD007', :indent => 4
    rule 'MD013', :line_length => 160, :code_blocks => false, :tables => false
    rule 'MD026', :punctuation => ".,;:!"
    exclude_rule 'MD013'
    exclude_rule 'MD014'
    exclude_rule 'MD030'
    exclude_rule 'MD032'
    exclude_rule 'MD033'
    exclude_rule 'MD041'
    Ruby
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 13 19:46:27 GMT 2023
    - 317 bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/classificationDeploymentMap.dfprop

    # classificationDeploymentMap: (NotRequired - Default map:{})
    #
    # The relation between column and classification.
    #
    # 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.
    #
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 795 bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableTableTest.java

        CollectorTester.of(collector)
            .expectCollects(ImmutableTable.of())
            .expectCollects(
                ImmutableTable.of("one", "uno", 3),
                Tables.immutableCell("one", "uno", 1),
                Tables.immutableCell("one", "uno", 2));
      }
    
      public void testBuilder() {
        ImmutableTable.Builder<Character, Integer, String> builder = new ImmutableTable.Builder<>();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 20K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/littleAdjustmentMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o quoteTableNameList: (NotRequired - Default list:{})
        #  The list of table DB names that need to be quoted. Specified tables is quoted on auto-generated SQL.
        #
        #; quoteTableNameList = list:{}
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 8.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java

    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.base.Function;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Test cases for {@link Tables#transformValues}.
     *
     * @author Jared Levy
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class TablesTransformValuesTest extends AbstractTableTest<Character> {
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  7. cni/pkg/plugin/sidecar_intercept_rule_mgr.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package plugin
    
    // InterceptRuleMgr configures networking tables (e.g. iptables or nftables) for
    // redirecting traffic to an Istio proxy.
    type InterceptRuleMgr interface {
    	Program(podName, netns string, redirect *Redirect) error
    }
    
    // Constructor for iptables InterceptRuleMgr
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 940 bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TablesTransposeRowTest.java

        super(false, true, true, true, false);
      }
    
      @Override
      Table<Character, String, Integer> makeTable() {
        Table<String, Character, Integer> original = TreeBasedTable.create();
        return Tables.transpose(original);
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableTableTest.java

        assertEquals(
            ImmutableTable.of('a', 1, "foo"), builder.put(Tables.immutableCell('a', 1, "foo")).build());
      }
    
      public void testBuilder_withImmutableCellAndNullContents() {
        ImmutableTable.Builder<Character, Integer, String> builder = new ImmutableTable.Builder<>();
        try {
          builder.put(Tables.immutableCell((Character) null, 1, "foo"));
          fail();
        } catch (NullPointerException e) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 04 16:54:11 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/RenderMarkdown.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.docs;
    
    import com.vladsch.flexmark.ext.tables.TablesExtension;
    import com.vladsch.flexmark.html.HtmlRenderer;
    import com.vladsch.flexmark.parser.Parser;
    import com.vladsch.flexmark.util.options.MutableDataSet;
    import org.gradle.api.DefaultTask;
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.2K bytes
    - Viewed (0)
Back to top