Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 887 for aranges (0.15 sec)

  1. src/debug/dwarf/open.go

    // the ".debug_abbrev" section.
    func New(abbrev, aranges, frame, info, line, pubnames, ranges, str []byte) (*Data, error) {
    	d := &Data{
    		abbrev:      abbrev,
    		aranges:     aranges,
    		frame:       frame,
    		info:        info,
    		line:        line,
    		pubnames:    pubnames,
    		ranges:      ranges,
    		str:         str,
    		abbrevCache: make(map[uint64]abbrevTable),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. .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)
  3. test/range3.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test the 'for range' construct ranging over integers.
    
    package main
    
    func testint1() {
    	bad := false
    	j := 0
    	for i := range int(4) {
    		if i != j {
    			println("range var", i, "want", j)
    			bad = true
    		}
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over 4:", j)
    		bad = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 17:20:08 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractRangeSet.java

      }
    
      @Override
      public void addAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          add(range);
        }
      }
    
      @Override
      public void removeAll(RangeSet<C> other) {
        removeAll(other.asRanges());
      }
    
      @Override
      public void removeAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          remove(range);
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/AbstractRangeSetTest.java

          Range<C> range1 = asRanges.get(i);
          Range<C> range2 = asRanges.get(i + 1);
          assertFalse(range1.isConnected(range2));
        }
    
        // test that there are no empty ranges
        for (Range<C> range : asRanges) {
          assertFalse(range.isEmpty());
        }
    
        // test that the RangeSet's span is the span of all the ranges
        Iterator<Range<C>> itr = rangeSet.asRanges().iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *
     * b0b1s7 is the section prefix. If a section is omitted, that means its ranges data exactly matches
     * that of the preceding section.
     *
     * b2b3s2 is the offset into the ranges data. It is shifted by 2 because ranges are 4-byte aligned.
     *
     * Mappings Data (4,719 bytes)
     * ===========================
     *
     * This is UTF-8 character data. It is indexed into by b2b3 in the ranges dataset.
     *
     * Mappings may overlap.
     *
     * ASCII-Only
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. test/range4.go

    }
    
    func testfunc0() {
    	j := 0
    	for range yield4x {
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over yield4x:", j)
    		panic("testfunc0")
    	}
    
    	j = 0
    	for _ = range yield4 {
    		j++
    	}
    	if j != 4 {
    		println("wrong count ranging over yield4:", j)
    		panic("testfunc0")
    	}
    }
    
    func testfunc1() {
    	bad := false
    	j := 1
    	for i := range yield4 {
    		if i != j {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 16:00:53 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. test/range2.go

    // See ../internal/types/testdata/spec/range.go for most tests.
    // The ones in this file cannot be expressed in that framework
    // due to conflicts between that framework's error location pickiness
    // and gofmt's comment location pickiness.
    
    package p
    
    type T struct{}
    
    func (*T) PM() {}
    func (T) M()   {}
    
    func test() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:32:14 UTC 2023
    - 830 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top