Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for RangeTs (0.13 sec)

  1. android/guava/src/com/google/common/collect/GeneralRange.java

        return cmp > 0 | (cmp == 0 & getUpperBoundType() == OPEN);
      }
    
      boolean contains(@ParametricNullness T t) {
        return !tooLow(t) && !tooHigh(t);
      }
    
      /**
       * Returns the intersection of the two ranges, or an empty range if their intersection is empty.
       */
      @SuppressWarnings("nullness") // TODO(cpovirk): Add casts as needed. Will be noisy and annoying...
      GeneralRange<T> intersect(GeneralRange<T> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/GeneralRange.java

        return cmp > 0 | (cmp == 0 & getUpperBoundType() == OPEN);
      }
    
      boolean contains(@ParametricNullness T t) {
        return !tooLow(t) && !tooHigh(t);
      }
    
      /**
       * Returns the intersection of the two ranges, or an empty range if their intersection is empty.
       */
      @SuppressWarnings("nullness") // TODO(cpovirk): Add casts as needed. Will be noisy and annoying...
      GeneralRange<T> intersect(GeneralRange<T> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/internal/xcoff/file.go

    			b, err := s.Data()
    			if err != nil && uint64(len(b)) < s.Size {
    				return nil, err
    			}
    			dat[i] = b
    		}
    	}
    
    	abbrev, info, line, ranges, str := dat[0], dat[1], dat[2], dat[3], dat[4]
    	return dwarf.New(abbrev, nil, nil, info, line, nil, ranges, str)
    }
    
    // readImportID returns the import file IDs stored inside the .loader section.
    // Library name pattern is either path/base/member or base/member
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. internal/http/headers.go

    	Expires            = "Expires"
    	ContentLength      = "Content-Length"
    	ContentLanguage    = "Content-Language"
    	ContentRange       = "Content-Range"
    	Connection         = "Connection"
    	AcceptRanges       = "Accept-Ranges"
    	AmzBucketRegion    = "X-Amz-Bucket-Region"
    	ServerInfo         = "Server"
    	RetryAfter         = "Retry-After"
    	Location           = "Location"
    	CacheControl       = "Cache-Control"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

      let summary = "Identity op which associates statistics with the value.";
    
      let description = [{
        Associates statistics about the runtime ranges of values observed for
        evaluations of this node.
    
        Statistics about the entire type are reported in the 'layerStats' attribute
        and those for each axis, in the (optional) `axisStats` attribute. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/debug/macho/file.go

    	}
    
    	// There are many other DWARF sections, but these
    	// are the ones the debug/dwarf package uses.
    	// Don't bother loading others.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for _, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    		if suffix == "" {
    			continue
    		}
    		if _, ok := dat[suffix]; !ok {
    			continue
    		}
    		b, err := sectionData(s)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/run.go

    		_ = cfg.ext.Run(constants.IPTablesSave, &iptVer, nil)
    		if cfg.cfg.EnableIPv6 {
    			_ = cfg.ext.Run(constants.IPTablesSave, &ipt6Ver, nil)
    		}
    	}()
    
    	// Since OUTBOUND_IP_RANGES_EXCLUDE could carry ipv4 and ipv6 ranges
    	// need to split them in different arrays one for ipv4 and one for ipv6
    	// in order to not to fail
    	ipv4RangesExclude, ipv6RangesExclude, err := cfg.separateV4V6(cfg.cfg.OutboundIPRangesExclude)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    type entry struct {
    	name      string
    	id        int64
    	gid       int64
    	userNames []string
    	shell     string
    }
    
    // limits is used to hold information about the minimum and maximum system ranges for UID and GID.
    type limits struct {
    	minUID, maxUID, minGID, maxGID int64
    }
    
    const (
    	// These are constants used when parsing /etc/passwd or /etc/group in terms of how many
    	// fields and entry has.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_waypoint.go

    			}
    		}
    		if len(portMapper.Map) > 0 {
    			cidr := util.ConvertAddressToCidr(svc.GetAddressForProxy(lb.node))
    			rangeMatcher := &matcher.IPMatcher_IPRangeMatcher{
    				Ranges: []*xds.CidrRange{{
    					AddressPrefix: cidr.AddressPrefix,
    					PrefixLen:     cidr.PrefixLen,
    				}},
    				OnMatch: match.ToMatcher(portMapper.Matcher),
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

        // JUnitCoverage is quite limited and doesn't test older versions or the newest version.
        // Future work is planned to improve junit test rewriting, and at the same time should verify
        // greater ranges of junit platform testing. This is only reproducible with the newest version
        // of junit, so test that version explicitly here.
        @Issue("https://github.com/gradle/gradle/issues/24429")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top