Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 383 for RangeTs (0.49 sec)

  1. src/unicode/letter.go

    func is32(ranges []Range32, r uint32) bool {
    	if len(ranges) <= linearMax {
    		for i := range ranges {
    			range_ := &ranges[i]
    			if r < range_.Lo {
    				return false
    			}
    			if r <= range_.Hi {
    				return range_.Stride == 1 || (r-range_.Lo)%range_.Stride == 0
    			}
    		}
    		return false
    	}
    
    	// binary search over ranges
    	lo := 0
    	hi := len(ranges)
    	for lo < hi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/errorsInFunctionalInterfacesInstances.txt

        ABSTRACT_MEMBER_NOT_IMPLEMENTED      text ranges: [(110,116)]
          PSI: KtObjectDeclaration at (7,14-48)
      for PSI element of type KtConstantExpression at (4,9-10)
        ARGUMENT_TYPE_MISMATCH      text ranges: [(88,89)]
          PSI: KtConstantExpression at (4,9-10)
      for PSI element of type KtConstantExpression at (10,38-39)
        RETURN_TYPE_MISMATCH      text ranges: [(230,231)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 19:36:44 UTC 2023
    - 516 bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    			out = append(out, cur)
    		}
    	}
    
    	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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractRangeSet.java

      public boolean enclosesAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          if (!encloses(range)) {
            return false;
          }
        }
        return true;
      }
    
      @Override
      public void addAll(RangeSet<C> other) {
        addAll(other.asRanges());
      }
    
      @Override
      public void addAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          add(range);
        }
      }
    
    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. 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/unicode/graphic.go

    // IsOneOf reports whether the rune is a member of one of the ranges.
    // The function "In" provides a nicer signature and should be used in preference to IsOneOf.
    func IsOneOf(ranges []*RangeTable, r rune) bool {
    	for _, inside := range ranges {
    		if Is(inside, r) {
    			return true
    		}
    	}
    	return false
    }
    
    // In reports whether the rune is a member of one of the ranges.
    func In(r rune, ranges ...*RangeTable) bool {
    	for _, inside := range ranges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsInNestedClass.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (10,19-42)
        ERROR_SUPPRESSION      text ranges: [(198,221)]
          PSI: KtStringTemplateExpression at (10,19-42)
      for PSI element of type KtStringTemplateExpression at (5,19-42)
        ERROR_SUPPRESSION      text ranges: [(78,101)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 366 bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RangeMap.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A mapping from disjoint nonempty ranges to non-null values. Queries look up the value associated
     * with the range (if any) that contains a specified key.
     *
     * <p>In contrast to {@link RangeSet}, no "coalescing" is done of {@linkplain
     * Range#isConnected(Range) connected} ranges, even if they are mapped to the same value.
     *
     * @author Louis Wasserman
     * @since 14.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/imagepolicy/config_test.go

    			},
    			wantErr: false,
    		},
    		{
    			test: "config below normal ranges, error",
    			config: imagePolicyWebhookConfig{
    				AllowTTL:     minAllowTTL - time.Duration(1),
    				DenyTTL:      minDenyTTL - time.Duration(1),
    				RetryBackoff: minRetryBackoff - time.Duration(1),
    			},
    			wantErr: true,
    		},
    		{
    			test: "config above normal ranges, error",
    			config: imagePolicyWebhookConfig{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. 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)
Back to top