Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for wantAudit (0.1 sec)

  1. pilot/pkg/model/authorization_test.go

    			}
    			if !reflect.DeepEqual(tc.wantDeny, result.Deny) {
    				t.Errorf("wantDeny:%v\n but got: %v\n", tc.wantDeny, result.Deny)
    			}
    			if !reflect.DeepEqual(tc.wantAudit, result.Audit) {
    				t.Errorf("wantAudit:%v\n but got: %v\n", tc.wantAudit, result.Audit)
    			}
    			if !reflect.DeepEqual(tc.wantCustom, result.Custom) {
    				t.Errorf("wantCustom:%v\n but got: %v\n", tc.wantCustom, result.Custom)
    			}
    		})
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		for k := range s.NumLabel {
    			encounteredKeys[k] = true
    			for _, unit := range s.NumUnit[k] {
    				if unit == "" {
    					continue
    				}
    				if wantUnit, ok := numLabelUnits[k]; !ok {
    					numLabelUnits[k] = unit
    				} else if wantUnit != unit {
    					if v, ok := ignoredUnits[k]; ok {
    						v[unit] = true
    					} else {
    						ignoredUnits[k] = map[string]bool{unit: true}
    					}
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top