Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for wabt (0.03 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    				for _, p := range cfgs {
    					if p.Disabled {
    						continue
    					}
    					got = append(got, p.Provider.Name)
    				}
    				sort.Strings(got)
    			}
    			if !reflect.DeepEqual(got, tt.want) {
    				t.Fatalf("got %v want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestAccessLoggingWithFilter(t *testing.T) {
    	sidecar := &Proxy{
    		ConfigNamespace: "default",
    		Labels:          map[string]string{"app": "test"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		// * routeHost, the hostname in the route entry
    		// * ourListener, the hostname of the listener the route is bound to
    		// * checkListener, the hostname of the other listener we are comparing to
    		// We want to return false if checkListener would match the routeHost and it would be a more exact match
    		if len(ourListener) > len(checkListener) {
    			// If our hostname is longer, it must be more exact than the check
    			continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	for index := range bucketsToBeUpdatedSlice {
    		index := index
    		g.Go(func() error {
    			return globalDNSConfig.Put(bucketsToBeUpdatedSlice[index])
    		}, index)
    	}
    
    	ctx := GlobalContext
    	for _, err := range g.Wait() {
    		if err != nil {
    			dnsLogIf(ctx, err)
    			return
    		}
    	}
    
    	for _, bucket := range bucketsInConflict.ToSlice() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	// Only an empty machineInfo is needed here, because in unit test all containers are besteffort,
    	// data in machineInfo is not used. If burstable containers are used in unit test in the future,
    	// we may want to set memory capacity.
    	memoryCapacityQuantity := resource.MustParse(fakeNodeAllocatableMemory)
    	machineInfo := &cadvisorapi.MachineInfo{
    		MemoryCapacity: uint64(memoryCapacityQuantity.Value()),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top