Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 310 for hasExt (0.21 sec)

  1. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

        }
    
    
        protected abstract SmbResource adapt ( FileEntry e ) throws MalformedURLException;
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#hasNext()
         */
        @Override
        public boolean hasNext () {
            return this.next != null;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#next()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionClearTester.java

        try {
          Iterator<E> iterator = collection.iterator();
          collection.clear();
          iterator.next();
          /*
           * We prefer for iterators to fail immediately on hasNext, but ArrayList
           * and LinkedList will notably return true on hasNext here!
           */
          fail("Expected ConcurrentModificationException");
        } catch (ConcurrentModificationException expected) {
          // success
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  3. platforms/software/security/src/main/java/org/gradle/security/internal/KeyringFilePublicKeyService.java

                        for (PGPPublicKeyRing keyring : keyrings) {
                            Iterator<PGPPublicKey> it = keyring.getPublicKeys();
                            while (it.hasNext()) {
                                PGPPublicKey key = it.next();
                                Fingerprint fingerprint = Fingerprint.of(key);
                                keyToKeyringBuilder.put(fingerprint, keyring);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/collection/EnumerationIteratorTest.java

            vector.add("a");
            final EnumerationIterator<String> itr = new EnumerationIterator<String>(vector.elements());
            assertThat(itr.hasNext(), is(true));
            assertThat(itr.next(), is("a"));
            assertThat(itr.hasNext(), is(not(true)));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testRemove() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/ShareEnumIterator.java

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#hasNext()
         */
        @Override
        public boolean hasNext () {
            return this.next != null;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#next()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/CollectionClearTester.java

        try {
          Iterator<E> iterator = collection.iterator();
          collection.clear();
          iterator.next();
          /*
           * We prefer for iterators to fail immediately on hasNext, but ArrayList
           * and LinkedList will notably return true on hasNext here!
           */
          fail("Expected ConcurrentModificationException");
        } catch (ConcurrentModificationException expected) {
          // success
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/EmptyIterator.java

    /**
     * @author mbechler
     *
     */
    public class EmptyIterator implements CloseableIterator<SmbResource> {
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#hasNext()
         */
        @Override
        public boolean hasNext () {
            return false;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.util.Iterator#next()
         */
        @Override
        public SmbResource next () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Oct 16 10:32:35 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/SubsetScriptTransformer.java

            while (iter.hasNext()) {
                ImportNode importedClass = iter.next();
                if (!AstUtils.isVisible(source, importedClass.getClassName())) {
                    iter.remove();
                }
            }
    
            iter = source.getAST().getStaticStarImports().values().iterator();
            while (iter.hasNext()) {
                ImportNode importedClass = iter.next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 08 12:24:19 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu.go

    	HasSHA512 bool // K{I,L}MD-SHA-512 functions
    	HasSHA3   bool // K{I,L}MD-SHA3-{224,256,384,512} and K{I,L}MD-SHAKE-{128,256} functions
    	HasVX     bool // vector facility. Note: the runtime sets this when it processes auxv records.
    	HasVXE    bool // vector-enhancements facility 1
    	HasKDSA   bool // elliptic curve functions
    	HasECDSA  bool // NIST curves
    	HasEDDSA  bool // Edwards curves
    	_         CacheLinePad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/versioning/ManagedVersionMap.java

            Iterator<String> iter = keySet().iterator();
            while (iter.hasNext()) {
                String key = iter.next();
                buffer.append(key).append('=').append(get(key));
                if (iter.hasNext()) {
                    buffer.append('\n');
                }
            }
            return buffer.toString();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top