Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 8,993 for e$ (0.04 sec)

  1. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

          Spliterator<E> split = spliterator.trySplit();
          return split == null ? null : new GeneralSpliteratorOfObject<>(split);
        }
      }
    
      private static final class GeneralSpliteratorOfPrimitive<
              E extends @Nullable Object, C, S extends Spliterator.OfPrimitive<E, C, S>>
          extends GeneralSpliterator<E> {
        final OfPrimitive<E, C, S> spliteratorOfPrimitive;
        final Function<Consumer<? super E>, C> consumerizer;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

      }
    
      public SafeTreeSet(Collection<? extends E> collection) {
        this(new TreeSet<E>(collection));
      }
    
      public SafeTreeSet(Comparator<? super E> comparator) {
        this(new TreeSet<E>(comparator));
      }
    
      public SafeTreeSet(SortedSet<E> set) {
        this(new TreeSet<E>(set));
      }
    
      private SafeTreeSet(NavigableSet<E> delegate) {
        this.delegate = delegate;
        for (E e : this) {
          checkValid(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

          extends SortedSetSubsetTestSetGenerator<E> {
        public NavigableSetSubsetTestSetGenerator(
            TestSortedSetGenerator<E> delegate, Bound to, Bound from) {
          super(delegate, to, from);
        }
    
        @Override
        NavigableSet<E> createSubSet(SortedSet<E> sortedSet, E firstExclusive, E lastExclusive) {
          NavigableSet<E> set = (NavigableSet<E>) sortedSet;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractSortedMultiset.java

      @Override
      public NavigableSet<E> elementSet() {
        return (NavigableSet<E>) super.elementSet();
      }
    
      @Override
      NavigableSet<E> createElementSet() {
        return new SortedMultisets.NavigableElementSet<>(this);
      }
    
      @Override
      public Comparator<? super E> comparator() {
        return comparator;
      }
    
      @Override
      @CheckForNull
      public Entry<E> firstEntry() {
        Iterator<Entry<E>> entryIterator = entryIterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. test/typeparam/issue51303.go

    	IntersectSS(x, y)
    }
    
    type list[E any] interface {
    	~[]E
    	Equal(x, y E) bool
    }
    
    // ss is a set of sets
    type ss[E comparable, T []E] []T
    
    func (ss[E, T]) Equal(a, b T) bool {
    	return SetEq(a, b)
    }
    
    func IntersectSS[E comparable](x, y [][]E) [][]E {
    	return IntersectT[[]E, ss[E, []E]](ss[E, []E](x), ss[E, []E](y))
    }
    
    func IntersectT[E any, L list[E]](x, y L) L {
    	var z L
    outer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/moment-with-locales.min.js

    Y"],he),le("YYYY",function(e,a){a[he]=2===e.length?l.parseTwoDigitYear(e):g(e)}),le("YY",function(e,a){a[he]=l.parseTwoDigitYear(e)}),le("Y",function(e,a){a[he]=parseInt(e,10)}),l.parseTwoDigitYear=function(e){return g(e)+(68<g(e)?1900:2e3)};var we,ve=Se("FullYear",!0);function Se(a,t){return function(e){return null!=e?(be(this,a,e),l.updateOffset(this,t),this):He(this,a)}}function He(e,a){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+a]():NaN}function be(e,a,t){e.isValid()&&!isNaN(t)&&("Ful...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 12 13:18:07 UTC 2018
    - 319K bytes
    - Viewed (0)
  7. src/slices/iter.go

    func SortedFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {
    	s := Collect(seq)
    	SortFunc(s, cmp)
    	return s
    }
    
    // SortedStableFunc collects values from seq into a new slice.
    // It then sorts the slice while keeping the original order of equal elements,
    // using the comparison function to compare elements.
    // It returns the new slice.
    func SortedStableFunc[E any](seq iter.Seq[E], cmp func(E, E) int) []E {
    	s := Collect(seq)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/EnumMultiset.java

    @ElementTypesAreNonnullByDefault
    public final class EnumMultiset<E extends Enum<E>> extends AbstractMapBasedMultiset<E>
        implements Serializable {
      public static <E extends Enum<E>> EnumMultiset<E> create(Class<E> type) {
        return new EnumMultiset<>(new EnumMap<E, Count>(type));
      }
    
      public static <E extends Enum<E>> EnumMultiset<E> create(Iterable<E> elements) {
        Iterator<E> iterator = elements.iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 26 21:20:30 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. docs/pt/docs/async.md

    Enquanto espera e conversa com seu _crush_ :heart_eyes:, de tempos em tempos, você verifica o número de chamada exibido no balcão para ver se já é sua vez.
    
    Então a certo ponto, é finalmente sua vez. Você vai no balcão, pega seus hambúrgueres e volta para a mesa.
    
    Você e seu _crush_ :heart_eyes: comem os hambúrgueres e aproveitam o tempo.
    
    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. test/fixedbugs/issue24817.go

    	want(false, "" > e, `"" > e`)
    	want(false, e > "", `e > ""`)
    
    	want(false, "" >= s, `"" >= s`)
    	want(true, s >= "", `s >= ""`)
    	want(true, "" >= e, `"" >= e`)
    	want(true, e >= "", `e >= ""`)
    
    	want(false, "" == s, `"" == s`)
    	want(false, s == "", `s == ""`)
    	want(true, "" == e, `"" == e`)
    	want(true, e == "", `e == ""`)
    
    	want(true, "" != s, `"" != s`)
    	want(true, s != "", `s != ""`)
    	want(false, "" != e, `"" != e`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 12 19:38:37 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top