Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 540 for rangesP (0.14 sec)

  1. okhttp/src/test/java/okhttp3/internal/idn/IdnaMappingTableTest.kt

        assertThat(compactTable.ranges.length).isLessThan((1 shl 14) * 4)
    
        // Less than 16,384 chars, because we index on a 14-bit index in the ranges table.
        assertThat(compactTable.mappings.length).isLessThan(1 shl 14)
    
        // Confirm the data strings are ASCII.
        for (dataString in listOf<String>(compactTable.sections, compactTable.ranges)) {
          for (codePoint in dataString.codePoints()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RangeMap.java

      /**
       * Returns the range containing this key and its associated value, if such a range is present in
       * the range map, or {@code null} otherwise.
       */
      @CheckForNull
      Entry<Range<K>, V> getEntry(K key);
    
      /**
       * Returns the minimal range {@linkplain Range#encloses(Range) enclosing} the ranges in this
       * {@code RangeMap}.
       *
       * @throws NoSuchElementException if this range map is empty
       */
      Range<K> span();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. test/range.go

    func testblankvars() {
    	n := 0
    	for range alphabet {
    		n++
    	}
    	if n != 26 {
    		println("for range: wrong count", n, "want 26")
    		panic("fail")
    	}
    	n = 0
    	for _ = range alphabet {
    		n++
    	}
    	if n != 26 {
    		println("for _ = range: wrong count", n, "want 26")
    		panic("fail")
    	}
    	n = 0
    	for _, _ = range alphabet {
    		n++
    	}
    	if n != 26 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 05:50:54 UTC 2017
    - 8.1K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/testdata/unicode.gox

    v2;
    package unicode;
    pkgpath unicode;
    init unicode unicode..import;
    var ASCII_Hex_Digit <type 1 *<type 2 "RangeTable" <type 3 struct { R16 <type 4 [] <type 5 "Range16" <type 6 struct { Lo <type -6>; Hi <type -6>; Stride <type -6>; }>>>; R32 <type 7 [] <type 8 "Range32" <type 9 struct { Lo <type -7>; Hi <type -7>; Stride <type -7>; }>>>; LatinOffset <type -11>; }>>>;
    var Adlam <type 1>;
    var Ahom <type 1>;
    var Anatolian_Hieroglyphs <type 1>;
    var Arabic <type 1>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry.go

    	}
    
    	return cu, 0, nil
    }
    
    func (d *Data) dwarf2Ranges(u *unit, base uint64, ranges int64, ret [][2]uint64) ([][2]uint64, error) {
    	if ranges < 0 || ranges > int64(len(d.ranges)) {
    		return nil, fmt.Errorf("invalid range offset %d (max %d)", ranges, len(d.ranges))
    	}
    	buf := makeBuf(d, u, "ranges", Offset(ranges), d.ranges[ranges:])
    	for len(buf.data) > 0 {
    		low := buf.addr()
    		high := buf.addr()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RangeMap.java

      /**
       * Returns the range containing this key and its associated value, if such a range is present in
       * the range map, or {@code null} otherwise.
       */
      @CheckForNull
      Entry<Range<K>, V> getEntry(K key);
    
      /**
       * Returns the minimal range {@linkplain Range#encloses(Range) enclosing} the ranges in this
       * {@code RangeMap}.
       *
       * @throws NoSuchElementException if this range map is empty
       */
      Range<K> span();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    	"image/color.RGBA64":  true,
    	"image/color.RGBA":    true,
    	"image/color.YCbCr":   true,
    	"image.Point":         true,
    	"image.Rectangle":     true,
    	"image.Uniform":       true,
    
    	"unicode.Range16": true,
    	"unicode.Range32": true,
    
    	// These four structs are used in generated test main files,
    	// but the generator can be trusted.
    	"testing.InternalBenchmark":  true,
    	"testing.InternalExample":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TreeRangeSetTest.java

        Range<Integer> range = Range.closedOpen(0, 5);
        set.add(range);
        set.subRangeSet(range).add(range);
      }
    
      public void testComplement() {
        for (Range<Integer> range1 : QUERY_RANGES) {
          for (Range<Integer> range2 : QUERY_RANGES) {
            TreeRangeSet<Integer> rangeSet = TreeRangeSet.create();
            rangeSet.add(range1);
            rangeSet.add(range2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 24.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/range.go

    		// for range ha { body }
    		if v1 == nil {
    			break
    		}
    
    		// for v1 := range ha { body }
    		if v2 == nil {
    			body = []ir.Node{rangeAssign(nrange, hv1)}
    			break
    		}
    
    		// for v1, v2 := range ha { body }
    		if cheapComputableIndex(elem.Size()) {
    			// v1, v2 = hv1, ha[hv1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/spec/range.go

    	}
    	for _ = range f7 {
    	}
    	for _, _ = range f8 {
    	}
    	for range 1 {
    	}
    	for range uint8(1) {
    	}
    	for range int64(1) {
    	}
    	for range MyInt(1) {
    	}
    	for range 'x' {
    	}
    	for range 1.0 /* ERROR "cannot range over 1.0 (untyped float constant 1)" */ {
    	}
    	for _ = range MyFunc1(nil) {
    	}
    	for _ = range MyFunc3(nil) {
    	}
    	for _ = range (func(MyFunc2))(nil) {
    	}
    
    	var i int
    	var s string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 04:31:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top