Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for eps (0.03 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		if implicitEndpoints {
    			eps = slices.Map(allServices, func(si model.ServiceInfo) *networkingv1alpha3.WorkloadEntry {
    				return &networkingv1alpha3.WorkloadEntry{Address: si.Hostname}
    			})
    		}
    		if len(eps) == 0 {
    			return nil
    		}
    		res := make([]model.WorkloadInfo, 0, len(eps))
    
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    
    		for i, wle := range eps {
    			services := allServices
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. 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)
  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. pilot/pkg/networking/core/cluster_builder_test.go

    				proxy, cb.req.Push,
    				"outbound|8080|v1|foo.com",
    				model.TrafficDirectionOutbound, "v1", "foo.com", 8080,
    				service, dr,
    			)
    			eps := eb.FromServiceEndpoints()
    			mu.Lock()
    			actual = eps
    			mu.Unlock()
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    	sortEndpoints(actual)
    	if v := cmp.Diff(expected, actual, protocmp.Transform()); v != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top