Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 137 for RangeTs (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        if (quantized_.contains(op)) continue;
        quantized_.insert(op);
    
        if (auto constant_op = dyn_cast<arith::ConstantOp>(op); constant_op) {
          // If the workflow requires inferring ranges from the content
          // (post-training quantization) and it is weight (filter) and hasn't
          // been quantized, we infer the quantization parameters from the content.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. cni/README.md

    | HOST_PROBE_SNAT_IPV6 | "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" | IPv6 link local ranges are designed to be collision-resistant by default, and so this probably never needs to be overridden |
    
    ## Sidecar Mode Implementation Details
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In the example above, `A` would have to say it _strictly depends on 1.1_.
    
    For this reason, a good practice is that if you use _strict versions_, you should express them in terms of ranges and a preferred version within this range.
    For example, `B` might say, instead of `strictly 1.0`, that it _strictly depends_ on the `[1.0, 2.0[` range, but _prefers_ `1.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/hns_test.go

    		t.Error(err)
    	}
    }
    
    func createTestNetwork() (*hcn.HostComputeNetwork, error) {
    	network := &hcn.HostComputeNetwork{
    		Type: NETWORK_TYPE_OVERLAY,
    		Name: "TestOverlay",
    		MacPool: hcn.MacPool{
    			Ranges: []hcn.MacRange{
    				{
    					StartMacAddress: "00-15-5D-52-C0-00",
    					EndMacAddress:   "00-15-5D-52-CF-FF",
    				},
    			},
    		},
    		Ipams: []hcn.Ipam{
    			{
    				Type: "Static",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repair.go

    				snapshotByFamily[family] = snapshot
    			}
    		}
    		return true, nil
    	})
    
    	if err != nil {
    		return fmt.Errorf("unable to refresh the service IP block: %v", err)
    	}
    
    	// ensure that ranges are assigned
    	for family, snapshot := range snapshotByFamily {
    		if snapshot.Range == "" {
    			snapshot.Range = c.networkByFamily[family].String()
    		}
    	}
    
    	// Create an allocator because it is easy to use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/server.go

    		"This parameter is ignored if a config file is specified by --config.")
    
    	fs.StringSliceVar(&o.config.NodePortAddresses, "nodeport-addresses", o.config.NodePortAddresses,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/html.go

    	if mask == "" {
    		return nil
    	}
    	// User can specify phase name with _ instead of spaces.
    	mask = strings.Replace(mask, "_", " ", -1)
    	ph := make(map[string]bool)
    	ranges := strings.Split(mask, ",")
    	for _, r := range ranges {
    		spl := strings.Split(r, "-")
    		if len(spl) > 2 {
    			fmt.Printf("range is not valid: %v\n", mask)
    			return nil
    		}
    		var first, last int
    		if mask == "*" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code User-Agent} header field name. */
      public static final String USER_AGENT = "User-Agent";
    
      // HTTP Response header fields
    
      /** The HTTP {@code Accept-Ranges} header field name. */
      public static final String ACCEPT_RANGES = "Accept-Ranges";
      /** The HTTP {@code Access-Control-Allow-Headers} header field name. */
      public static final String ACCESS_CONTROL_ALLOW_HEADERS = "Access-Control-Allow-Headers";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

      SmallVector<BlockArgument, 4> args_;
    
      OpQuantSpecGetter op_quant_spec_getter_;
      OpQuantScaleSpecGetter op_quant_scale_spec_getter_;
    
      // Infer output ranges for activation ops and constants. This is usually
      // required for post-training quantization.
      const bool infer_tensor_range_;
    
      // Calculate scales in float instead of double, so that the scales and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * works better than Ordering.natural().nullsFirst() because, if null comes before all other
       * values, it lies outside the submap/submultiset ranges we test, and the variety of tests that
       * exercise null handling fail on those subcollections.
       */
      public abstract static class NullsBefore implements Comparator<@Nullable String>, Serializable {
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top