Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,526 for oranges (0.17 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Range.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.concurrent
    
    /**
     * A range of time.
     */
    class Range {
        private final long millis
    
        Range(long millis) {
            this.millis = millis
        }
    
        @Override
        String toString() {
            return "[approx $millis millis]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

            function zoomFunction(plot, reset) {
                reset = reset || false;
                return function (event, ranges) {
                    $.each(plot.getXAxes(), function(_, axis) {
                        const opts = axis.options;
                        opts.min = reset ? null : ranges.xaxis.from;
                        opts.max = reset ? null : ranges.xaxis.to;
                    });
                    $.each(plot.getYAxes(), function(_, axis) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        this.ranges = ranges;
      }
    
      private ImmutableRangeSet(ImmutableList<Range<C>> ranges, ImmutableRangeSet<C> complement) {
        this.ranges = ranges;
        this.complement = complement;
      }
    
      private final transient ImmutableList<Range<C>> ranges;
    
      @Override
      public boolean intersects(Range<C> otherRange) {
        int ceilingIndex =
            SortedLists.binarySearch(
                ranges,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableRangeSet.java

        this.ranges = ranges;
      }
    
      private ImmutableRangeSet(ImmutableList<Range<C>> ranges, ImmutableRangeSet<C> complement) {
        this.ranges = ranges;
        this.complement = complement;
      }
    
      private final transient ImmutableList<Range<C>> ranges;
    
      @Override
      public boolean intersects(Range<C> otherRange) {
        int ceilingIndex =
            SortedLists.binarySearch(
                ranges,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry_test.go

    			}
    			ranges, err := d.Ranges(entry)
    			if err != nil {
    				t.Errorf("%s: subprogram %d: %v", test.filename, i, err)
    				continue
    			}
    			if !reflect.DeepEqual(ranges, subprograms[i].ranges) {
    				t.Errorf("%s: subprogram %d ranges are %x, expected %x", test.filename, i, ranges, subprograms[i].ranges)
    			}
    			i++
    		}
    
    		if i < len(subprograms) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    than to F, and thence I conclude, that the Colour compounded of these Ingredients will be an orange, verging a little more to red than to yellow. Also I find that OZ is a little less than one half of OY, and thence I conclude, that this orange hath a little less than half the fulness or intenseness of an uncompounded orange; that is to say, that it is such an orange as may be made by mixing an homogeneal orange with a good white in the proportion of the Line OZ to the Line ZY, this Proportion being not...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/RangeSet.java

      boolean isEmpty();
    
      /**
       * Returns the minimal range which {@linkplain Range#encloses(Range) encloses} all ranges in this
       * range set.
       *
       * @throws NoSuchElementException if this range set is {@linkplain #isEmpty() empty}
       */
      Range<C> span();
    
      // Views
    
      /**
       * Returns a view of the {@linkplain Range#isConnected disconnected} ranges that make up this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RangeSet.java

        for (Range<C> range : other) {
          if (!encloses(range)) {
            return false;
          }
        }
        return true;
      }
    
      /** Returns {@code true} if this range set contains no ranges. */
      boolean isEmpty();
    
      /**
       * Returns the minimal range which {@linkplain Range#encloses(Range) encloses} all ranges in this
       * range set.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/testdata/Isaac.Newton-Opticks.txt

    be an orange, verging a little more to red than to yellow. Also I find
    that OZ is a little less than one half of OY, and thence I conclude,
    that this orange hath a little less than half the fulness or intenseness
    of an uncompounded orange; that is to say, that it is such an orange as
    may be made by mixing an homogeneal orange with a good white in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/ip-range.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top