Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 262 for row (0.13 sec)

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

     * Null row keys, columns keys, and values are not supported.
     *
     * <p>Lookups by row key are often faster than lookups by column key, because the data is stored in
     * a {@code Map<R, Map<C, V>>}. A method call like {@code column(columnKey).get(rowKey)} still runs
     * quickly, since the row key is provided. However, {@code column(columnKey).size()} takes longer,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/storage/admin_storage_tag_edit.jsp

    			<jsp:param name="menuType" value="storage" />
    		</jsp:include>
    		<div class="content-wrapper">
    			<div class="content-header">
    				<div class="container-fluid">
    					<div class="row mb-2">
    						<div class="col-sm-6">
    							<h1>
    								<la:message key="labels.storage_configuration" />
    							</h1>
    						</div>
    						<div class="col-sm-6">
    							<ol class="breadcrumb float-sm-right">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu May 26 01:48:41 GMT 2022
    - 4.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java

        for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
          assertEquals(ImmutableMap.of(1, "foo", 2, "baz"), testInstance.row('a'));
          assertEquals(ImmutableMap.of(1, "bar"), testInstance.row('b'));
          assertEquals(ImmutableMap.of(), testInstance.row('c'));
        }
      }
    
      public void testRowKeySet() {
        for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/TableCollectors.java

        private final R row;
        private final C column;
        private V value;
    
        MutableCell(R row, C column, V value) {
          this.row = checkNotNull(row, "row");
          this.column = checkNotNull(column, "column");
          this.value = checkNotNull(value, "value");
        }
    
        @Override
        public R getRowKey() {
          return row;
        }
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Mar 09 00:21:17 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap_edit.jsp

            <jsp:param name="menuType" value="pathMapping"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.pathmap_title_details"/>
                            </h1>
                        </div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Feb 28 06:09:47 GMT 2021
    - 7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Table.java

       * value mapping in the table with that row key, the returned map associates the column key with
       * the value. If no mappings in the table have the provided row key, an empty map is returned.
       *
       * <p>Changes to the returned map will update the underlying table, and vice versa.
       *
       * @param rowKey key of row to search for in the table
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 10.7K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

            <jsp:param name="menuType" value="searchLog"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.searchlog_configuration"/>
                            </h1>
                        </div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 16K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

        SortedMap<Integer, Character> row = sortedTable.row("c");
        assertEquals(2, row.size());
        assertEquals(1, row.tailMap(15).size());
      }
    
      public void testSubRowClearAndPut() {
        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        SortedMap<Integer, Character> row = (SortedMap<Integer, Character>) table.row("foo");
        SortedMap<Integer, Character> subRow = row.tailMap(2);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 15K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ArrayTable.java

     *
     * <p>The allowed row and column keys must be supplied when the table is created. The table always
     * contains a mapping for every row key / column pair. The value corresponding to a given row and
     * column is null unless another value is provided.
     *
     * <p>The table's size is constant: the product of the number of supplied row keys and the number of
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 26.9K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap.jsp

            <jsp:param name="menuType" value="pathMapping"/>
        </jsp:include>
        <div class="content-wrapper">
            <div class="content-header">
                <div class="container-fluid">
                    <div class="row mb-2">
                        <div class="col-sm-6">
                            <h1>
                                <la:message key="labels.pathmap_configuration"/>
                            </h1>
                        </div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 7.4K bytes
    - Viewed (0)
Back to top