Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 292 for Howard (0.03 sec)

  1. licenses/github.com/howardjohn/unshare-go/LICENSE

          file or class name and description of purpose be included on the
          same "printed page" as the copyright notice for easier
          identification within third-party archives.
    
       Copyright 2023 John Howard
    
       Licensed under the Apache License, Version 2.0 (the "License");
       you may not use this file except in compliance with the License.
       You may obtain a copy of the License at
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-01-31 07:51
    - 11.1K bytes
    - Viewed (0)
  2. cmd/dynamic-timeouts.go

    	} else if failPct < dynamicTimeoutDecreaseThresholdPct {
    		// We are hitting the timeout relatively few times,
    		// so decrease the timeout towards 25 % of maximum time spent.
    		maxDur = maxDur * 125 / 100
    
    		timeout := atomic.LoadInt64(&dt.timeout)
    		if maxDur < time.Duration(timeout) {
    			// Move 50% toward the max.
    			timeout = (int64(maxDur) + timeout) / 2
    		}
    		if timeout < dt.minimum {
    			timeout = dt.minimum
    		}
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 4.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/DescendingImmutableSortedMultiset.java

      private final transient ImmutableSortedMultiset<E> forward;
    
      DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) {
        this.forward = forward;
      }
    
      @Override
      public int count(@Nullable Object element) {
        return forward.count(element);
      }
    
      @Override
      public @Nullable Entry<E> firstEntry() {
        return forward.lastEntry();
      }
    
      @Override
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 2.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/DescendingImmutableSortedSet.java

      private final ImmutableSortedSet<E> forward;
    
      DescendingImmutableSortedSet(ImmutableSortedSet<E> forward) {
        super(Ordering.from(forward.comparator()).reverse());
        this.forward = forward;
      }
    
      @Override
      public boolean contains(@Nullable Object object) {
        return forward.contains(object);
      }
    
      @Override
      public int size() {
        return forward.size();
      }
    
      @Override
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 3.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ForwardingMap.java

       * forward to this implementation.
       *
       * @since 7.0
       */
      protected int standardHashCode() {
        return Sets.hashCodeImpl(entrySet());
      }
    
      /**
       * A sensible definition of {@link #toString} in terms of the {@code iterator} method of {@link
       * #entrySet}. If you override {@link #entrySet}, you may wish to override {@link #toString} to
       * forward to this implementation.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 9.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/DescendingImmutableSortedMultiset.java

      private final transient ImmutableSortedMultiset<E> forward;
    
      DescendingImmutableSortedMultiset(ImmutableSortedMultiset<E> forward) {
        this.forward = forward;
      }
    
      @Override
      public int count(@Nullable Object element) {
        return forward.count(element);
      }
    
      @Override
      public @Nullable Entry<E> firstEntry() {
        return forward.lastEntry();
      }
    
      @Override
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 2.5K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java

        BiMapPair<K, V> copy = SerializableTester.reserialize(pair);
        assertEquals(pair.forward, copy.forward);
        assertEquals(pair.backward, copy.backward);
        assertSame(copy.backward, copy.forward.inverse());
        assertSame(copy.forward, copy.backward.inverse());
      }
    
      private static class BiMapPair<K, V> implements Serializable {
        final BiMap<K, V> forward;
        final BiMap<V, K> backward;
    
        BiMapPair(BiMap<K, V> original) {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-13 17:34
    - 3.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * #iterator} to forward to this implementation.
       *
       * @since 7.0
       */
      protected Iterator<E> standardIterator() {
        return Multisets.iteratorImpl(this);
      }
    
      /**
       * A sensible, albeit inefficient, definition of {@link #size} in terms of {@link #entrySet}. If
       * you override {@link #entrySet}, you may wish to override {@link #size} to forward to this
       * implementation.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 10.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

       * forward to this implementation.
       */
      protected @Nullable Entry<K, V> standardFirstEntry() {
        return Iterables.<@Nullable Entry<K, V>>getFirst(entrySet(), null);
      }
    
      /**
       * A sensible definition of {@link #firstKey} in terms of {@code firstEntry}. If you override
       * {@code firstEntry}, you may wish to override {@code firstKey} to forward to this
       * implementation.
       */
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 14.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingList.java

       * this implementation.
       *
       * @since 7.0
       */
      protected Iterator<E> standardIterator() {
        return listIterator();
      }
    
      /**
       * A sensible default implementation of {@link #listIterator()}, in terms of {@link
       * #listIterator(int)}. If you override {@link #listIterator(int)}, you may wish to override
       * {@link #listIterator()} to forward to this implementation.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-22 03:38
    - 7.8K bytes
    - Viewed (0)
Back to top