Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 214 for distinct (0.19 sec)

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

      public final ImmutableList<V> replaceValues(K key, Iterable<? extends V> values) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * @serialData number of distinct keys, and then for each distinct key: the key, the number of
       *     values for that key, and the key's values
       */
      @GwtIncompatible // java.io.ObjectOutputStream
      @J2ktIncompatible
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java

            body.permissions = stream(entity.getPermissions()).get(
                    stream -> stream.map(permissionHelper::decode).filter(StringUtil::isNotBlank).distinct().collect(Collectors.joining("\n")));
            body.crudMode = null;
            return body;
    
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

                is ConeErrorType -> emptySequence()
                is ConeLookupTagBasedType -> getSubstitutedSuperTypes(shouldApproximate)
                else -> emptySequence()
            }.distinct()
        }
    
        private fun ConeLookupTagBasedType.getSubstitutedSuperTypes(shouldApproximate: Boolean): Sequence<ConeKotlinType> {
            val session = analysisSession.firResolveSession.useSiteFirSession
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Feb 20 08:50:04 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractMultimap.java

      abstract Iterator<Entry<K, V>> entryIterator();
    
      Spliterator<Entry<K, V>> entrySpliterator() {
        return Spliterators.spliterator(
            entryIterator(), size(), (this instanceof SetMultimap) ? Spliterator.DISTINCT : 0);
      }
    
      @LazyInit @CheckForNull private transient Set<K> keySet;
    
      @Override
      public Set<K> keySet() {
        Set<K> result = keySet;
        return (result == null) ? keySet = createKeySet() : result;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jun 15 21:08:00 GMT 2021
    - 7.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

        return Multisets.iteratorImpl(this);
      }
    
      @Override
      public final int size() {
        return Ints.saturatedCast(size);
      }
    
      /**
       * @serialData the number of distinct elements, the first element, its count, the second element,
       *     its count, and so on
       */
      @GwtIncompatible // java.io.ObjectOutputStream
      @J2ktIncompatible
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Mar 06 16:06:58 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/SortedMultiset.java

       * {@code null} if this multiset is empty.
       */
      @CheckForNull
      Entry<E> pollLastEntry();
    
      /**
       * Returns a {@link NavigableSet} view of the distinct elements in this multiset.
       *
       * @since 14.0 (present with return type {@code SortedSet} since 11.0)
       */
      @Override
      NavigableSet<E> elementSet();
    
      /**
       * {@inheritDoc}
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 5.5K bytes
    - Viewed (0)
  7. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                )
            }
        }
    
        @Test
        fun uuidsAreUnique() {
            val uuidList = model.stages.flatMap { it.functionalTests.map { ft -> ft.uuid } }
            assertEquals(uuidList.distinct(), uuidList)
        }
    
        @Test
        fun testsAreCorrectlyConfiguredForAllSubProjects() {
            model.subprojects.subprojects.filter {
                !ignoredSubprojects.contains(it.name)
            }.forEach {
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSetMultimap.java

        return (valueComparator == null)
            ? new ImmutableSet.Builder<V>()
            : new ImmutableSortedSet.Builder<V>(valueComparator);
      }
    
      /**
       * @serialData number of distinct keys, and then for each distinct key: the key, the number of
       *     values for that key, and the key's values
       */
      @GwtIncompatible // java.io.ObjectOutputStream
      @J2ktIncompatible
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableMultimap.java

     * source of bugs and confusion.
     *
     * <p><b>Note:</b> every {@link ImmutableMultimap} offers an {@link #inverse} view, so there is no
     * need for a distinct {@code ImmutableBiMultimap} type.
     *
     * <p><a id="iteration"></a>
     *
     * <p><b>Key-grouped iteration.</b> All view collections follow the same iteration order. In all
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            final List<String> pagingQueryList = new ArrayList<>();
            if (form.ex_q != null) {
                stream(form.ex_q).of(stream -> stream.filter(StringUtil::isNotBlank).distinct()
                        .forEach(q -> pagingQueryList.add("ex_q=" + LaFunctions.u(q))));
            }
            if (StringUtil.isNotBlank(form.sort)) {
                pagingQueryList.add("sort=" + LaFunctions.u(form.sort));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
Back to top