Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,056 for previousN (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/ListElementSource.java

            }
            T previous = iterator.next();
            iterator.set(element);
            return previous;
        }
    
        @Override
        public T remove(int index) {
            modCount++;
            ListIterator<T> iterator = iteratorAt(index - 1);
            if (!iterator.hasNext()) {
                throw new IndexOutOfBoundsException();
            }
            T previous = iterator.next();
            iterator.remove();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:15 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractSequentialIterator.java

     * whose next element can always be derived from the previous element. Null elements are not
     * supported, nor is the {@link #remove()} method.
     *
     * <p>Example:
     *
     * <pre>{@code
     * Iterator<Integer> powersOfTwo =
     *     new AbstractSequentialIterator<Integer>(1) {
     *       protected Integer computeNext(Integer previous) {
     *         return (previous == 1 << 30) ? null : previous * 2;
     *       }
     *     };
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue33460.go

    	switch v {
    	case zero, one:
    	case two, one: // ERROR "previous case at LINE-1|duplicate case .*in.* switch"
    
    	case three:
    	case 3: // ERROR "previous case at LINE-1|duplicate case .*in.* switch"
    	case iii: // ERROR "previous case at LINE-2|duplicate case .*in.* switch"
    	}
    }
    
    const b = "b"
    
    var _ = map[string]int{
    	"a": 0,
    	b:   1,
    	"a": 2, // ERROR "previous key at LINE-2|duplicate key.*in map literal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 825 bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/OutputFileChanges.java

    public class OutputFileChanges implements ChangeContainer {
    
        private final SortedMap<String, FileSystemSnapshot> previous;
        private final SortedMap<String, FileSystemSnapshot> current;
    
        public OutputFileChanges(SortedMap<String, FileSystemSnapshot> previous, SortedMap<String, FileSystemSnapshot> current) {
            this.previous = previous;
            this.current = current;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

            });
        return holder.get();
      }
    
      /**
       * Updates the value currently associated with {@code key} by combining it with {@code x} via the
       * specified accumulator function, returning the new value. The previous value associated with
       * {@code key} (or zero, if there is none) is passed as the first argument to {@code
       * accumulatorFunction}, and {@code x} is passed as the second argument.
       *
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ListElementSourceTest.groovy

            then:
            iterator.previous() == "fuzz"
            iterator.previous() == "fizz"
            iterator.previous() == "foo"
            !iterator.hasPrevious()
    
            and:
            iterator.next() == "foo"
            iterator.next() == "fizz"
            iterator.next() == "fuzz"
            !iterator.hasNext()
    
            and:
            iterator.previous() == "fuzz"
            iterator.previous() == "fizz"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 13 05:06:48 UTC 2020
    - 12.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/console/AbstractConsoleGroupedTaskFunctionalTest.groovy

                def previousAttribute = null
                def styled = ""
                if (previous == null) {
                    this.plainOutput = ""
                } else {
                    this.plainOutput = previous.plainOutput
                    previousColor = previous.color
                    previousAttribute = previous.attribute
                    styled = previous.styledOutput
                }
                if (attribute != null && previousAttribute == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/SLinkedList.java

             */
            public Entry getPrevious() {
                if (previous != SLinkedList.this.header) {
                    return previous;
                }
                return null;
            }
    
            /**
             * 要素を削除します。
             */
            public void remove() {
                previous.next = next;
                next.previous = previous;
                --size;
            }
    
            /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	if wasUntolerated && !isUntolerated {
    		logger.V(5).Info("node was created or updated, and this may make the Pod rejected by TaintToleration plugin in the previous scheduling cycle schedulable", "pod", klog.KObj(pod), "node", klog.KObj(modifiedNode))
    		return framework.Queue, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepSubject.java

            }
        }
    
        private static class Transformed extends TransformStepSubject {
            private final TransformStepSubject previous;
            private final ImmutableList<File> files;
    
            public Transformed(TransformStepSubject previous, ImmutableList<File> files) {
                this.previous = previous;
                this.files = files;
            }
    
            @Override
            public ImmutableList<File> getFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top