Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 382 for RangeTs (0.27 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),
    		typeCache:   make(map[Offset]Type),
    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. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // using input ranges.
      bool disable_set_input_nodes_quantization_params = false;
    
      // The default ranges can be used when a tensor doesn't have quantization
      // parameters and couldn't be quantized. Used only for latency tests.
      std::pair<std::optional<double>, std::optional<double>> default_ranges;
    
      // A serialized "QuantizationInfo" object to specify value ranges for some of
      // the tensors with known names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/api/service/util.go

    // If the field is not specified, turn to parse and verify the AnnotationLoadBalancerSourceRangesKey annotation from a service,
    // extracting the source ranges to allow, and if not present returns a default (allow-all) value.
    func GetLoadBalancerSourceRanges(service *api.Service) (utilnet.IPNetSet, error) {
    	var ipnets utilnet.IPNetSet
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. pkg/registry/core/limitrange/storage/storage.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/registry/core/limitrange"
    )
    
    // REST implements a RESTStorage for limit ranges.
    type REST struct {
    	*genericregistry.Store
    }
    
    // NewREST returns a RESTStorage object that will work against limit ranges.
    func NewREST(optsGetter generic.RESTOptionsGetter) (*REST, error) {
    	store := &genericregistry.Store{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/numberlines.go

    	endlines := make(map[ID]src.XPos)
    	ranges := make(map[int]lineRange)
    	note := func(p src.XPos) {
    		line := uint32(p.Line())
    		i := int(p.FileIndex())
    		lp, found := ranges[i]
    		change := false
    		if line < lp.first || !found {
    			lp.first = line
    			change = true
    		}
    		if line > lp.last {
    			lp.last = line
    			change = true
    		}
    		if change {
    			ranges[i] = lp
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/TreeRangeSet.java

       * element will be contained in this {@code RangeSet} if and only if it is contained in at least
       * one {@code Range} in {@code ranges}.
       *
       * @since 21.0
       */
      public static <C extends Comparable<?>> TreeRangeSet<C> create(Iterable<Range<C>> ranges) {
        TreeRangeSet<C> result = create();
        result.addAll(ranges);
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/TreeRangeSet.java

       * element will be contained in this {@code RangeSet} if and only if it is contained in at least
       * one {@code Range} in {@code ranges}.
       *
       * @since 21.0
       */
      public static <C extends Comparable<?>> TreeRangeSet<C> create(Iterable<Range<C>> ranges) {
        TreeRangeSet<C> result = create();
        result.addAll(ranges);
        return result;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/codeFragmentDiagnostics/evalJvm.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (1,1-5)
        UNRESOLVED_REFERENCE      text ranges: [(0,4)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 189 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/codeFragmentDiagnostics/evalJvmJs.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (1,1-5)
        UNRESOLVED_REFERENCE      text ranges: [(0,4)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 189 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/conflictingOverloadsAtTopLevelWithFileSuppression.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (1,16-39)
        ERROR_SUPPRESSION      text ranges: [(15,38)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 194 bytes
    - Viewed (0)
Back to top