Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 8,993 for e$ (0.04 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. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    null==b?-1:i.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;d<c;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;f<g;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,f=0,h=[];if(w(a))for(d=a.length;f<d;f++)e=b(a[f],f,c),null!=e&&h.push(e);else for(f in a)e=b(a[f],f,c),null!=e&&h.push(e);return g.apply([],h)},guid:1,proxy:function(a,b){var c,d,e;if("string"==typeof b&&(c=a[b],b=a,a=c),r.isFunction(a))return d=f...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/regexp/testdata/nullsubexpr.dat

    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	([a]*)+		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	([^b]*)*	a		(0,1)(0,1)
    E	SAME		b		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaab		(0,6)(0,6)
    E	([ab]*)*	a		(0,1)(0,1)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		ababab		(0,6)(0,6)
    E	SAME		bababa		(0,6)(0,6)
    E	SAME		b		(0,1)(0,1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top