Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,993 for e$ (0.12 sec)

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

          return toString;
        }
      }
    
      Stimulus<E, Iterator<E>> hasNext =
          new Stimulus<E, Iterator<E>>("hasNext") {
            @Override
            void executeAndCompare(ListIterator<E> reference, Iterator<E> target) {
              assertEquals(reference.hasNext(), target.hasNext());
            }
          };
      Stimulus<E, Iterator<E>> next =
          new Stimulus<E, Iterator<E>>("next") {
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/security/index.md

    E isso normalmente é um tópico “difícil” e complexo.
    
    Em muitos frameworks e sistemas, apenas lidar com segurança e autenticação exige muito esforço e código (em muitos casos isso pode ser 50% ou mais de todo o código escrito).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

            }
        }
    
        private static class List2<E> extends AbstractImmutableList<E> {
            private final E element1;
            private final E element2;
    
            private List2(E element1, E element2) {
                this.element1 = element1;
                this.element2 = element2;
            }
    
            @Override
            public E get(int index) {
                if (index == 0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SortedMultiset.java

       * returns a {@code NavigableSet}.)
       */
      @Override
      SortedSet<E> elementSet();
    
      SortedMultiset<E> descendingMultiset();
    
      SortedMultiset<E> headMultiset(E upperBound, BoundType boundType);
    
      SortedMultiset<E> subMultiset(
          E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType);
    
      SortedMultiset<E> tailMultiset(E lowerBound, BoundType boundType);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

        return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3));
      }
    
      /**
       * Returns an immutable sorted multiset containing the given elements sorted by their natural
       * ordering.
       *
       * @throws NullPointerException if any element is null
       */
      public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of(
          E e1, E e2, E e3, E e4) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/write.go

    		e.IntAt(e.Pos(), packagesPos+8*i+4)
    		encodePackage(e, p)
    	}
    	e.IntAt(e.Pos(), stringTableOffsetPos)
    	e.Bytes(e.stringTable)
    	e.Bytes([]byte{0xFF}) // end of string table marker
    	return e.b
    }
    
    func encodePackageBytes(p *rawPackage) []byte {
    	return encodeModuleBytes([]*rawPackage{p})
    }
    
    func encodePackage(e *encoder, p *rawPackage) {
    	e.String(p.error)
    	e.String(p.dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/CollectionTestSuiteBuilder.java

     * @author Chris Povirk
     * @author Louis Wasserman
     */
    @GwtIncompatible
    public class CollectionTestSuiteBuilder<E>
        extends AbstractCollectionTestSuiteBuilder<CollectionTestSuiteBuilder<E>, E> {
      public static <E> CollectionTestSuiteBuilder<E> using(TestCollectionGenerator<E> generator) {
        return new CollectionTestSuiteBuilder<E>().usingGenerator(generator);
      }
    
      @Override
      protected List<TestSuite> createDerivedSuites(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 18 22:49:45 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  8. src/os/user/lookup_windows.go

    )
    
    func current() (*User, error) {
    	t, e := syscall.OpenCurrentProcessToken()
    	if e != nil {
    		return nil, e
    	}
    	defer t.Close()
    	u, e := t.GetTokenUser()
    	if e != nil {
    		return nil, e
    	}
    	pg, e := t.GetTokenPrimaryGroup()
    	if e != nil {
    		return nil, e
    	}
    	uid, e := u.User.Sid.String()
    	if e != nil {
    		return nil, e
    	}
    	gid, e := pg.PrimaryGroup.String()
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeMultiset.java

       *
       * <p>The type specification is {@code <E extends Comparable>}, instead of the more specific
       * {@code <E extends Comparable<? super E>>}, to support classes defined without generics.
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <E extends Comparable> TreeMultiset<E> create(Iterable<? extends E> elements) {
        TreeMultiset<E> multiset = create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/DescendingMultiset.java

    @ElementTypesAreNonnullByDefault
    abstract class DescendingMultiset<E extends @Nullable Object> extends ForwardingMultiset<E>
        implements SortedMultiset<E> {
      abstract SortedMultiset<E> forwardMultiset();
    
      @LazyInit @CheckForNull private transient Comparator<? super E> comparator;
    
      @Override
      public Comparator<? super E> comparator() {
        Comparator<? super E> result = comparator;
        if (result == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top