Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for singleValue (0.15 sec)

  1. guava/src/com/google/common/collect/SingletonImmutableBiMap.java

      final transient K singleKey;
      final transient V singleValue;
    
      SingletonImmutableBiMap(K singleKey, V singleValue) {
        checkEntryNotNull(singleKey, singleValue);
        this.singleKey = singleKey;
        this.singleValue = singleValue;
        this.inverse = null;
      }
    
      private SingletonImmutableBiMap(K singleKey, V singleValue, ImmutableBiMap<V, K> inverse) {
        this.singleKey = singleKey;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/SingletonImmutableTable.java

      }
    
      @Override
      public int size() {
        return 1;
      }
    
      @Override
      ImmutableSet<Cell<R, C, V>> createCellSet() {
        return ImmutableSet.of(cellOf(singleRowKey, singleColumnKey, singleValue));
      }
    
      @Override
      ImmutableCollection<V> createValues() {
        return ImmutableSet.of(singleValue);
      }
    
      @Override
      @J2ktIncompatible // serialization
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                    final Set<String> sortFieldNames = new HashSet<>();
                    for (final String defaultSortValue : defaultSortValues) {
                        for (final String singleValue : defaultSortValue.split(",")) {
                            final String sortFieldName = singleValue.split("\\.")[0];
                            if (!sortFieldNames.contains(sortFieldName)) {
                                sortFieldNames.add(sortFieldName);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/main/webapp/js/jquery-3.7.1.min.map

    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 131.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/jquery-3.7.1.min.map

    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:07:52 UTC 2024
    - 131.6K bytes
    - Viewed (0)
Back to top