Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for currentEntry (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveSetupPluginFuncTest.groovy

            try {
                TarArchiveEntry currentEntry = tarInput.getNextTarEntry()
                while (currentEntry != null) {
                    if (currentEntry.isDirectory()) {
                        assertDefaultDirPermissions(currentEntry.getMode())
                    } else {
                        assertDefaultFilePermissions(currentEntry.getMode())
                    }
                    currentEntry = tarInput.getNextTarEntry()
                }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 8.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/Multisets.java

          }
          if (laterCount == 0) {
            currentEntry = entryIterator.next();
            totalCount = laterCount = currentEntry.getCount();
          }
          laterCount--;
          canRemove = true;
          /*
           * requireNonNull is safe because laterCount starts at 0, forcing us to initialize
           * currentEntry above. After that, we never clear it.
           */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.3K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/Multisets.java

          }
          if (laterCount == 0) {
            currentEntry = entryIterator.next();
            totalCount = laterCount = currentEntry.getCount();
          }
          laterCount--;
          canRemove = true;
          /*
           * requireNonNull is safe because laterCount starts at 0, forcing us to initialize
           * currentEntry above. After that, we never clear it.
           */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 41.2K bytes
    - Click Count (0)
Back to Top