Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for currentIndex (0.25 sec)

  1. docs/en/docs/js/custom.js

        loadVisibleTermynals();
    }
    
    function shuffle(array) {
        var currentIndex = array.length, temporaryValue, randomIndex;
        while (0 !== currentIndex) {
            randomIndex = Math.floor(Math.random() * currentIndex);
            currentIndex -= 1;
            temporaryValue = array[currentIndex];
            array[currentIndex] = array[randomIndex];
            array[randomIndex] = temporaryValue;
        }
        return array;
    JavaScript
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 6.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashSet.java

              throw new NoSuchElementException();
            }
            indexToRemove = currentIndex;
            E result = element(currentIndex);
            currentIndex = getSuccessor(currentIndex);
            return result;
          }
    
          @Override
          public void remove() {
            checkForConcurrentModification();
            checkRemove(indexToRemove >= 0);
            incrementExpectedModCount();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 05 21:38:59 GMT 2024
    - 24K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactHashSet.java

              throw new NoSuchElementException();
            }
            indexToRemove = currentIndex;
            E result = element(currentIndex);
            currentIndex = getSuccessor(currentIndex);
            return result;
          }
    
          @Override
          public void remove() {
            checkForConcurrentModification();
            checkRemove(indexToRemove >= 0);
            incrementExpectedModCount();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Feb 05 21:38:59 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/CompactHashMap.java

          checkForConcurrentModification();
          if (!hasNext()) {
            throw new NoSuchElementException();
          }
          indexToRemove = currentIndex;
          T result = getOutput(currentIndex);
          currentIndex = getSuccessor(currentIndex);
          return result;
        }
    
        @Override
        public void remove() {
          checkForConcurrentModification();
          checkRemove(indexToRemove >= 0);
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 39.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/CompactHashMap.java

          checkForConcurrentModification();
          if (!hasNext()) {
            throw new NoSuchElementException();
          }
          indexToRemove = currentIndex;
          T result = getOutput(currentIndex);
          currentIndex = getSuccessor(currentIndex);
          return result;
        }
    
        @Override
        public void remove() {
          checkForConcurrentModification();
          checkRemove(indexToRemove >= 0);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 35.8K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    evalSubstringOf(String); protected abstract String relationship(); } org/hamcrest/internal/ArrayIterator.class package org.hamcrest.internal; public synchronized class ArrayIterator implements java.util.Iterator { private final Object array; private int currentIndex; public void ArrayIterator(Object); public boolean hasNext(); public Object next(); public void remove(); } org/hamcrest/internal/ReflectiveTypeFinder.class package org.hamcrest.internal; public synchronized class ReflectiveTypeFinder { private...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 44K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    public class ArrayIterator implements Iterator<Object> { private final Object array; private int currentIndex = 0; public ArrayIterator(Object array) { if (!array.getClass().isArray()) { throw new IllegalArgumentExcep("not an array"); } this.array = array; } @Override public boolean hasNext() { return currentIndex < Array.getLength(array); } @Override public Object next() { return Array.get(array, currentIndex++); } @Override public void remove() { throw new UnsupportedOperation("cannot remove items from...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
Back to top