Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 231 for RangeTs (0.24 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    def quantfork_StatisticsOp : quantfork_Op<"stats", [SameOperandsAndResultType]> {
      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: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava-tests/test/com/google/common/math/LongMathTest.java

      @GwtIncompatible // java.math.BigInteger
      public void testMean() {
        // Odd-sized ranges have an obvious mean
        assertMean(2, 1, 3);
    
        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1L << 62) - 1, -1, Long.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

     *     <li>{@link TargetGradleVersion} - specifies the tooling API testDirectoryProvider versions that the test is compatible with.
     * </ul>
     *
     * The supported ranges for the tooling API versions and for the target Gradle versions are documented in the Gradle user guide.
     * For up-to-date information, check the 'Compatibility of Java and Gradle versions` section of the 'Third-party Tools' chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/math/LongMathTest.java

      @GwtIncompatible // java.math.BigInteger
      public void testMean() {
        // Odd-sized ranges have an obvious mean
        assertMean(2, 1, 3);
    
        assertMean(-2, -3, -1);
        assertMean(0, -1, 1);
        assertMean(1, -1, 3);
        assertMean((1L << 62) - 1, -1, Long.MAX_VALUE);
    
        // Even-sized ranges should prefer the lower mean
        assertMean(2, 1, 4);
        assertMean(-3, -4, -1);
        assertMean(0, -1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 20:15:57 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  10. src/net/http/response_test.go

    			"Accept-Ranges: bytes\r\n" +
    			"Content-Range: bytes 0-5/1862\r\n" +
    			"Content-Length: 6\r\n\r\n" +
    			"foobar",
    
    		Response{
    			Status:     "206 Partial Content",
    			StatusCode: 206,
    			Proto:      "HTTP/1.1",
    			ProtoMajor: 1,
    			ProtoMinor: 1,
    			Request:    dummyReq("GET"),
    			Header: Header{
    				"Accept-Ranges":  []string{"bytes"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top