Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for expectedly (0.09 sec)

  1. pkg/util/iptables/testing/parse_test.go

    				if tc.error != "" {
    					t.Errorf("unexpectedly did not get error")
    				} else if !reflect.DeepEqual(tc.output, dump) {
    					t.Errorf("bad output: expected %#v got %#v", tc.output, dump)
    				}
    			} else {
    				if tc.error == "" {
    					t.Errorf("got unexpected error: %v", err)
    				} else if !strings.Contains(err.Error(), tc.error) {
    					t.Errorf("got wrong error: %v (expected %q)", err, tc.error)
    				}
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    			t.Errorf("unexpected error: %v", err)
    		}
    		if decision == authorizer.DecisionAllow {
    			t.Errorf("unexpectedly allowed")
    		}
    	}
    }
    
    type sampleDataOpts struct {
    	nodes       int
    	namespaces  int
    	podsPerNode int
    
    	attachmentsPerNode int
    
    	// sharedConfigMapsPerNamespaces defines number of shared configmaps in a given
    	// namespace. Each pod then mounts a random set of size `sharedConfigMapsPerPod`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top