Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for weights (0.33 sec)

  1. pkg/config/validation/validation_test.go

    			Weight:      5,
    		}, {
    			Destination: &networking.Destination{Host: "foo.baz.east"},
    			Weight:      -1,
    		}}, valid: false},
    		{name: "total weight > 100", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "foo.baz.south"},
    			Weight:      550,
    		}, {
    			Destination: &networking.Destination{Host: "foo.baz.east"},
    			Weight:      500,
    		}}, valid: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	}
    
    	rss, err = fp.ipvs.GetRealServers(vs)
    	if err != nil {
    		t.Errorf("failed to get real server, err: %v", err)
    	}
    	for _, rs := range rss {
    		if rs.Weight != 1 {
    			t.Logf("unexpected realserver weight: %d, expected weight: 1", rs.Weight)
    			t.Errorf("unexpected realserver state")
    		}
    	}
    }
    
    func TestIPv4Proxier(t *testing.T) {
    	tests := []struct {
    		name         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %1 : tensor<1x2x3x5xf32>
    }
    
    // CHECK: %[[WEIGHT:.+]] = "tfl.pseudo_qconst"() <{qtype = tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+00>>, value = dense<1> : tensor<1x2x4x5xi8>}>
    // CHECK: %[[DQ:.+]] = "tfl.dequantize"(%[[WEIGHT]]) : (tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+00>>) -> tensor<1x2x4x5xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          ('to_xla_per_tensor', quant_opts_pb2.XLA, False),
          ('stablehlo_per_channel', quant_opts_pb2.STABLEHLO, True),
          # TODO: b/289761265 - [Converter Component][TF-Quantizer] Improve Weight-
          # only Quantization
          # Enable this back once new weight-only quantizer is supported for per-
          # channel quantization.
          # ('to_xla_per_channel', quant_opts_pb2.XLA, True),
      )
      @test_util.run_in_graph_and_eager_modes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    				{
    					ExtenderName: "FakeExtender1",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   3,
    							Function: tf.Node1PrioritizerExtender,
    						},
    					},
    				},
    				{
    					ExtenderName: "FakeExtender2",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   2,
    							Function: tf.Node2PrioritizerExtender,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
          weight: 50
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          weight: 50
        headers:
          request:
            set:
              :authority: route-authority`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "http",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    x1="19" y1="1" x2="1" y2="19"/></svg>',"navbar-toggle-icon":'<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect y="9" width="20" height="2"/><rect y="3" width="20" height="2"/><rect y="15" width="20" height="2"/></svg>',"overlay-icon":'<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="0" width="1" height="40"/><rect x="0" y="19" width="40" height="1"/></svg>',"pagination-next":'<svg width="7" height="12" viewBox="0 0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testBatchToSpaceInvalidOutputHeight(%arg0: tensor<16x8x8x3xf32>, %arg1: tensor<*xi32>) {
      // expected-error @+1 {{'tf.BatchToSpace' op requires output height (dimension 1) to be less than or equal to input height (dimension 1) * block_size, but got output height 17, input height 8, and block_size 2}}
      %0 = "tf.BatchToSpace"(%arg0, %arg1) {block_size = 2 : i64} : (tensor<16x8x8x3xf32>, tensor<*xi32>) -> tensor<4x17x8x3xf32>
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.unidirectional_sequence_lstm' op failed to verify that either projection weight must be specified or both projection weight and projection bias must not be specified}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	NS_DNS       = 12
    	NS_NLA       = 15
    	NS_BTH       = 16
    	NS_EMAIL     = 37
    	NS_PNRPNAME  = 38
    	NS_PNRPCLOUD = 39
    )
    
    type DNSSRVData struct {
    	Target   *uint16
    	Priority uint16
    	Weight   uint16
    	Port     uint16
    	Pad      uint16
    }
    
    type DNSPTRData struct {
    	Host *uint16
    }
    
    type DNSMXData struct {
    	NameExchange *uint16
    	Preference   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top