Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 348 for hasExt (0.15 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    	if t.str == "" {
    		t.pVariant, t.pExt = byte(uStart-1), uint16(uStart-1)
    		t.str = string(buf[:uStart+len(b)])
    	} else {
    		s := t.str
    		start, sep, end, hasExt := t.findTypeForKey(key)
    		if start == sep {
    			if hasExt {
    				b = b[2:]
    			}
    			t.str = fmt.Sprintf("%s-%s%s", s[:sep], b, s[end:])
    		} else {
    			t.str = fmt.Sprintf("%s-%s%s", s[:start+3], value, s[end:])
    		}
    	}
    	return t, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

                assertFalse(fakePool.hasNext());
              }
            };
    
        assertFalse(fakePool.hasNext());
        e.execute(intCounter);
        // A task should have been scheduled
        assertTrue(fakePool.hasNext());
        e.execute(intCounter);
        // Our executor hasn't run any tasks yet.
        assertEquals(0, totalCalls.get());
        fakePool.runAll();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java

                assertFalse(fakePool.hasNext());
              }
            };
    
        assertFalse(fakePool.hasNext());
        e.execute(intCounter);
        // A task should have been scheduled
        assertTrue(fakePool.hasNext());
        e.execute(intCounter);
        // Our executor hasn't run any tasks yet.
        assertEquals(0, totalCalls.get());
        fakePool.runAll();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/StandardTable.java

        Iterator<Entry<C, V>> columnIterator = Iterators.emptyModifiableIterator();
    
        @Override
        public boolean hasNext() {
          return rowIterator.hasNext() || columnIterator.hasNext();
        }
    
        @Override
        public Cell<R, C, V> next() {
          if (!columnIterator.hasNext()) {
            rowEntry = rowIterator.next();
            columnIterator = rowEntry.getValue().entrySet().iterator();
          }
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/StandardTable.java

        Iterator<Entry<C, V>> columnIterator = Iterators.emptyModifiableIterator();
    
        @Override
        public boolean hasNext() {
          return rowIterator.hasNext() || columnIterator.hasNext();
        }
    
        @Override
        public Cell<R, C, V> next() {
          if (!columnIterator.hasNext()) {
            rowEntry = rowIterator.next();
            columnIterator = rowEntry.getValue().entrySet().iterator();
          }
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        assertThat(routeSelector.hasNext()).isTrue()
        dns[uriHost] = dns.allocate(2)
        val selection = routeSelector.next()
        assertRoute(selection.next(), address, Proxy.NO_PROXY, dns.lookup(uriHost, 0), uriPort)
        assertRoute(selection.next(), address, Proxy.NO_PROXY, dns.lookup(uriHost, 1), uriPort)
        assertThat(selection.hasNext()).isFalse()
        assertThat(routeSelector.hasNext()).isFalse()
        dns.assertRequests(uriHost)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        abstract T output(@ParametricNullness K key, @ParametricNullness V value);
    
        @Override
        public boolean hasNext() {
          return keyIterator.hasNext() || valueIterator.hasNext();
        }
    
        @Override
        @ParametricNullness
        public T next() {
          if (!valueIterator.hasNext()) {
            Entry<K, Collection<V>> mapEntry = keyIterator.next();
            key = mapEntry.getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  8. android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

        boolean nextThrewException;
    
        IteratorWithSunJavaBug6529795(Iterator<T> iterator) {
          this.iterator = iterator;
        }
    
        @Override
        public boolean hasNext() {
          return iterator.hasNext();
        }
    
        @Override
        public T next() {
          try {
            return iterator.next();
          } catch (NoSuchElementException e) {
            nextThrewException = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        abstract T output(@ParametricNullness K key, @ParametricNullness V value);
    
        @Override
        public boolean hasNext() {
          return keyIterator.hasNext() || valueIterator.hasNext();
        }
    
        @Override
        @ParametricNullness
        public T next() {
          if (!valueIterator.hasNext()) {
            Entry<K, Collection<V>> mapEntry = keyIterator.next();
            key = mapEntry.getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  10. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

        boolean nextThrewException;
    
        IteratorWithSunJavaBug6529795(Iterator<T> iterator) {
          this.iterator = iterator;
        }
    
        @Override
        public boolean hasNext() {
          return iterator.hasNext();
        }
    
        @Override
        public T next() {
          try {
            return iterator.next();
          } catch (NoSuchElementException e) {
            nextThrewException = true;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top