Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,526 for oranges (0.16 sec)

  1. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            0      | Fruit.apples  | 0      | Fruit.oranges | 0       | Fruit.apples
            0      | Fruit.apples  | 12     | Fruit.oranges | 12      | Fruit.oranges
            0.7    | Fruit.apples  | 0      | Fruit.oranges | 0.7     | Fruit.apples
            1      | Fruit.apples  | 2      | Fruit.oranges | 7       | Fruit.apples
            3      | Fruit.oranges | 4      | Fruit.oranges | 7       | Fruit.oranges
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertSame(comparator, comparator.reverse());
    
        assertEquals(0, comparator.compare(null, null));
        assertEquals(0, comparator.compare(new Object(), new Object()));
        assertEquals(0, comparator.compare("apples", "oranges"));
        assertSame(comparator, reserialize(comparator));
        assertEquals("Ordering.allEqual()", comparator.toString());
    
        List<String> strings = ImmutableList.of("b", "a", "d", "c");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  3. src/runtime/mranges.go

    			oldRanges := a.ranges
    			ranges := (*notInHeapSlice)(unsafe.Pointer(&a.ranges))
    			ranges.len = len(oldRanges) + 1
    			ranges.cap = cap(oldRanges) * 2
    			ranges.array = (*notInHeap)(persistentalloc(unsafe.Sizeof(addrRange{})*uintptr(ranges.cap), goarch.PtrSize, a.sysStat))
    
    			// Copy in the old array, but make space for the new range.
    			copy(a.ranges[:i], oldRanges[:i])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Range.java

       * also be called their <i>union</i>. If they are not, note that the span might contain values
       * that are not contained in either input range.
       *
       * <p>Like {@link #intersection(Range) intersection}, this operation is commutative, associative
       * and idempotent. Unlike it, it is always well-defined for any two input ranges.
       */
      public Range<C> span(Range<C> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Range.java

       * also be called their <i>union</i>. If they are not, note that the span might contain values
       * that are not contained in either input range.
       *
       * <p>Like {@link #intersection(Range) intersection}, this operation is commutative, associative
       * and idempotent. Unlike it, it is always well-defined for any two input ranges.
       */
      public Range<C> span(Range<C> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/ranges.c

    Ian Lance Taylor <******@****.***> 1458162954 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 14:06:09 UTC 2016
    - 415 bytes
    - Viewed (0)
  7. .github/workflows/latest-changes.yml

            with:
              limit-access-to-actor: true
          - uses: docker://tiangolo/latest-changes:0.3.0
          # - uses: tiangolo/latest-changes@main
            with:
              token: ${{ secrets.GITHUB_TOKEN }}
              latest_changes_file: docs/en/docs/release-notes.md
              latest_changes_header: '## Latest Changes'
              end_regex: '^## '
              debug_logs: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 14:57:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/debug/dwarf/testdata/ranges.elf

    Ian Lance Taylor <******@****.***> 1458162954 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 14:06:09 UTC 2016
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/ranges.golden

    //gofmt -s
    
    // Test cases for range simplification.
    package p
    
    func _() {
    	for a, b = range x {
    	}
    	for a = range x {
    	}
    	for _, b = range x {
    	}
    	for range x {
    	}
    
    	for a = range x {
    	}
    	for range x {
    	}
    
    	for a, b := range x {
    	}
    	for a := range x {
    	}
    	for _, b := range x {
    	}
    
    	for a := range x {
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 307 bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/ranges.input

    //gofmt -s
    
    // Test cases for range simplification.
    package p
    
    func _() {
    	for a, b = range x {}
    	for a, _ = range x {}
    	for _, b = range x {}
    	for _, _ = range x {}
    
    	for a = range x {}
    	for _ = range x {}
    
    	for a, b := range x {}
    	for a, _ := range x {}
    	for _, b := range x {}
    
    	for a := range x {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 22 00:25:13 UTC 2014
    - 304 bytes
    - Viewed (0)
Back to top