Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for watt (0.05 sec)

  1. pilot/pkg/networking/core/listenertest/match.go

    			}
    		} else {
    			for _, want := range lt.FilterChains {
    				found := 0
    				for _, have := range l.FilterChains {
    					if want.Name != "" && want.Name != have.Name {
    						continue
    					}
    					haveType := classifyFilterChain(have)
    					if want.Type != "" && want.Type != haveType {
    						continue
    					}
    					if want.Port != 0 && want.Port != have.GetFilterChainMatch().GetDestinationPort().GetValue() {
    						continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. cmd/erasure-multipart.go

    				}
    			}
    			// Fallback for older uploads without time in the ID.
    			if modTime.IsZero() {
    				wait := deleteMultipartCleanupSleeper.Timer(ctx)
    				fi, err := disk.ReadVersion(ctx, "", minioMetaMultipartBucket, uploadIDPath, "", ReadOptions{})
    				if err != nil {
    					return nil
    				}
    				modTime = fi.ModTime
    				wait()
    			}
    			if time.Since(modTime) < expiry {
    				return nil
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. pilot/pkg/simulation/traffic.go

    		t.Errorf("want filter chain matched %q got %q", want.FilterChainMatched, r.FilterChainMatched)
    	} else {
    		want.FilterChainMatched = r.FilterChainMatched
    	}
    	if want.RouteMatched != "" && want.RouteMatched != r.RouteMatched {
    		t.Errorf("want route matched %q got %q", want.RouteMatched, r.RouteMatched)
    	} else {
    		want.RouteMatched = r.RouteMatched
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_test.go

    								},
    							},
    						},
    					},
    				},
    			},
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := tt.computedTelemetries.Equal(tt.args.other); got != tt.want {
    				t.Errorf("computedTelemetries.Equal() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		// fairness effect.
    		go wait.JitterUntil(kl.syncNodeStatus, kl.nodeStatusUpdateFrequency, 0.04, true, wait.NeverStop)
    		go kl.fastStatusUpdateOnce()
    
    		// start syncing lease
    		go kl.nodeLeaseController.Run(context.Background())
    	}
    	go wait.Until(kl.updateRuntimeUp, 5*time.Second, wait.NeverStop)
    
    	// Set up iptables util rules
    	if kl.makeIPTablesUtilChains {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			clusters := cg.Clusters(cg.SetupProxy(nil))
    			clusterNames := xdstest.MapKeys(xdstest.ExtractClusters(clusters))
    			sort.Strings(tt.want)
    			if !cmp.Equal(clusterNames, tt.want) {
    				t.Fatalf("want %v got %v", tt.want, clusterNames)
    			}
    		})
    	}
    }
    
    func TestTelemetryMetadata(t *testing.T) {
    	cases := []struct {
    		name      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_builder_test.go

    	tests := []struct {
    		name   string
    		proxy  *model.Proxy
    		fields fields
    		want   fields
    	}{
    		{
    			name:  "patch add inbound and outbound listener",
    			proxy: sidecarProxy,
    			fields: fields{
    				OutboundListeners: []*listener.Listener{
    					{
    						Name: "outbound-listener",
    					},
    				},
    			},
    			want: fields{
    				InboundListeners: []*listener.Listener{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    				ips.Insert(extra.GetAddress().GetAddress())
    			}
    			want := sets.New[string]()
    			if tt.ipv4Expected {
    				want.Insert("127.0.0.6")
    			}
    			if tt.ipv6Expected {
    				want.Insert("::6")
    			}
    			assert.Equal(t, want, ips)
    			// Validate that Passthrough Cluster LB Policy is set correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta_test.go

    	addTestClientEndpoints(s.MemRegistry)
    	s.MemRegistry.AddHTTPService(edsIncSvc, edsIncVip, 8080)
    	s.MemRegistry.SetEndpoints(edsIncSvc, "",
    		newEndpointWithAccount("127.0.0.1", "hello-sa", "v1"))
    	// Wait until the above debounce, to ensure we can precisely check XDS responses without spurious pushes
    	s.EnsureSynced(t)
    
    	ads := s.ConnectDeltaADS().WithID("sidecar~127.0.0.1~test.default~default.svc.cluster.local")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    	// We need 2 go routines because 'read' blocks in Recv().
    	go s.receiveDelta(con, ids)
    
    	// Wait for the proxy to be fully initialized before we start serving traffic. Because
    	// initialization doesn't have dependencies that will block, there is no need to add any timeout
    	// here. Prior to this explicit wait, we were implicitly waiting by receive() not sending to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top