Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for eps (0.02 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      const float eps = 1e-7;
    
      // Bias scale should be input * per_channel_weight_scale.
      for (size_t i = 0; i < out_channel_size; i++) {
        EXPECT_THAT(bias_scales[i], FloatNear(input_tensor->quantization->scale[0] *
                                                  weights_scales[i],
                                              eps));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses.go

    		var singleNode bool
    		var eps []string
    
    		for i := 0; ; i++ {
    			for _, node := range endpointsList {
    				if node.nodeName == "" {
    					singleNode = true
    				}
    
    				if len(node.disks) <= i {
    					stopping = true
    					continue
    				}
    				if stopping {
    					return layout, errors.New("number of disks per node does not match")
    				}
    				eps = append(eps, node.disks[i])
    			}
    			if stopping {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            File pom = getProject("it0063");
    
            Properties eps = new Properties();
            eps.setProperty("jre.home", new File(pom.getParentFile(), "jdk/jre").getPath());
    
            MavenSession session = createMavenSession(pom, eps);
            MavenProject project = session.getCurrentProject();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards.go

    }
    
    func (f *EndpointIndexUpdater) ConfigUpdate(*PushRequest) {}
    
    func (f *EndpointIndexUpdater) EDSUpdate(shard ShardKey, serviceName string, namespace string, eps []*IstioEndpoint) {
    	pushType := f.Index.UpdateServiceEndpoints(shard, serviceName, namespace, eps)
    	if f.ConfigUpdateFunc != nil && (pushType == IncrementalPush || pushType == FullPush) {
    		// Trigger a push
    		f.ConfigUpdateFunc(&PushRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. src/math/cmplx/cmath_test.go

    var zero = 0.0
    var eps = 1.0 / (1 << 53)
    
    var branchPoints = [][2]complex128{
    	{complex(2.0, zero), complex(2.0, eps)},
    	{complex(2.0, -zero), complex(2.0, -eps)},
    	{complex(-2.0, zero), complex(-2.0, eps)},
    	{complex(-2.0, -zero), complex(-2.0, -eps)},
    	{complex(zero, 2.0), complex(eps, 2.0)},
    	{complex(-zero, 2.0), complex(-eps, 2.0)},
    	{complex(zero, -2.0), complex(eps, -2.0)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker.go

    	// consider a Service pointing to 10.0.0.1:80 and 10.0.0.1:443 to have 1 endpoint,
    	// not 2.)
    
    	eps := make(map[types.NamespacedName]int)
    	localIPs := em.getLocalReadyEndpointIPs()
    	for nsn, ips := range localIPs {
    		eps[nsn] = len(ips)
    	}
    	return eps
    }
    
    // detectStaleConntrackEntries detects services that may be associated with stale conntrack entries.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    func (esc *endpointSliceController) GetProxyServiceTargets(proxy *model.Proxy) []model.ServiceTarget {
    	eps := esc.slices.List(proxy.Metadata.Namespace, endpointSliceSelector)
    	var out []model.ServiceTarget
    	for _, ep := range eps {
    		instances := esc.serviceTargets(ep, proxy)
    		out = append(out, instances...)
    	}
    
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. cmd/endpoint.go

    			for diskIdx := range eps {
    				eps[diskIdx].SetPoolIndex(poolIdx)
    				eps[diskIdx].SetSetIndex(setIdx)
    				eps[diskIdx].SetDiskIndex(diskIdx)
    			}
    
    			endpoints = append(endpoints, eps...)
    		}
    
    		if len(endpoints) == 0 {
    			return nil, setupType, config.ErrInvalidErasureEndpoints(nil).Msg("invalid number of endpoints")
    		}
    
    		poolEndpoints[poolIdx] = endpoints
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. pkg/config/mesh/mesh_test.go

    		t.Errorf("trust domain aliases deep merge failed")
    	}
    
    	gotY, err := protomarshal.ToYAML(got)
    	t.Log("Result: \n", gotY, err)
    }
    
    func getExtensionProviders(eps []*meshconfig.MeshConfig_ExtensionProvider) []string {
    	got := []string{}
    	for _, ep := range eps {
    		got = append(got, ep.Name)
    	}
    	return got
    }
    
    func TestDeepMerge(t *testing.T) {
    	cases := []struct {
    		name string
    		in   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			[]int32{1, 2, 3}, "foo.co", t, fx)
    
    		converted := controller.Services()
    		assert.Equal(t, len(converted), 1)
    		eps := GetEndpointsForPort(converted[0], controller.Endpoints, 1)
    		assert.Equal(t, len(eps), 1)
    		assert.Equal(t, eps[0], &model.IstioEndpoint{
    			Address:               "foo.co",
    			ServicePortName:       "tcp-port-1",
    			EndpointPort:          1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top