Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,526 for oranges (0.19 sec)

  1. src/cmd/internal/dwarf/dwarf.go

    		}
    	}
    
    	return out
    }
    
    // UnifyRanges merges the ranges from 'c' into the list of ranges for 's'.
    func (s *Scope) UnifyRanges(c *Scope) {
    	s.Ranges = MergeRanges(s.Ranges, c.Ranges)
    }
    
    // AppendRange adds r to s, if r is non-empty.
    // If possible, it extends the last Range in s.Ranges; if not, it creates a new one.
    func (s *Scope) AppendRange(r Range) {
    	if r.End <= r.Start {
    		return
    	}
    	i := len(s.Ranges)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. src/debug/dwarf/line_test.go

    	// unit is malformed (negative).
    	var aranges, frame, pubnames, ranges, str []byte
    	abbrev := []byte{0x10, 0x20, 0x20, 0x20, 0x21, 0x20, 0x10, 0x21, 0x61,
    		0x0, 0x0, 0xff, 0x20, 0xff, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
    		0x20, 0x20, 0x20, 0x20, 0x20, 0x20}
    	info := []byte{0x0, 0x0, 0x0, 0x9, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0,
    		0x20, 0x10, 0x10}
    	line := []byte{0x20}
    	Data0, err := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsInClass.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (4,15-38)
        ERROR_SUPPRESSION      text ranges: [(50,73)]
          PSI: KtStringTemplateExpression at (4,15-38)
      for PSI element of type KtStringTemplateExpression at (9,15-38)
        ERROR_SUPPRESSION      text ranges: [(154,177)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 363 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevel2.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtNamedFunction at (20,1) - (22,2)
        CONFLICTING_OVERLOADS      text ranges: [(394,415)]
          PSI: KtNamedFunction at (20,1) - (22,2)
      for PSI element of type KtNamedFunction at (7,1) - (9,2)
        CONFLICTING_OVERLOADS      text ranges: [(215,233)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 349 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevel2.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (12,11-34)
        ERROR_SUPPRESSION      text ranges: [(152,175)]
          PSI: KtStringTemplateExpression at (12,11-34)
      for PSI element of type KtStringTemplateExpression at (7,11-34)
        ERROR_SUPPRESSION      text ranges: [(64,87)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 365 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * `TaskDestroyables.getFiles()` is no longer part of the public API.
     * Overlapping version ranges for a dependency now result in Gradle picking a version that satisfies all declared ranges.
    +
    For example, if a dependency on `some-module` is found with a version range of `[3,6]` and also transitively with a range of `[4,8]`, Gradle now selects version 6 instead of 8. The prior behavior was to select 8.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. 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)
  8. istioctl/pkg/writer/compare/testdata/configdump.json

                        "typed_config": {
                          "@type": "type.googleapis.com/xds.type.matcher.v3.IPMatcher",
                          "range_matchers": [
                            {
                              "ranges": [
                                {
                                  "address_prefix": "10.111.182.109",
                                  "prefix_len": 32
                                }
                              ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/ipam/doc.go

    //     connectivity.
    //   - CloudAllocator is an allocator that synchronizes PodCIDRs from IP
    //     ranges assignments from the underlying cloud platform.
    //   - (Alpha only) IPAMFromCluster is an allocator that has the similar
    //     functionality as the RangeAllocator but also synchronizes cluster-managed
    //     ranges into the cloud platform.
    //   - (Alpha only) IPAMFromCloud is the same as CloudAllocator (synchronizes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteDelegation.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (3,21-28)
        UNUSED_PARAMETER      text ranges: [(53,54)]
          PSI: KtParameter at (3,21-28)
      for PSI element of type KtParameter at (3,30-45)
        UNUSED_PARAMETER      text ranges: [(62,63)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 29 08:27:53 UTC 2023
    - 299 bytes
    - Viewed (0)
Back to top