Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wellFormed (0.08 sec)

  1. src/cmd/compile/internal/abt/avlint32_test.go

    			continue
    		}
    
    		for j, old := range history {
    			s, i := old.wellFormed()
    			if s != "" {
    				te.Errorf("Old tree consistency problem %v at k=%d, j=%d, old=\n%v, t=\n%v", s, k, j, old.DebugString(), t.DebugString())
    				return
    			}
    			if i != j {
    				te.Errorf("Wrong tree size %v, expected %v for old %v", i, j, old.DebugString())
    			}
    		}
    		s, i := t.wellFormed()
    		if s != "" {
    			te.Errorf("Tree consistency problem at %v", s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 16:34:41 UTC 2022
    - 20.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    		ftr.addDigests(skippingNDigests, false)
    	}
    	if testDebugLogs {
    		t.Logf("Returning name=%s, plRef=%q, wellFormed=%v, matchesAllResourceRequests=%v, matchesAllNonResourceRequests=%v for mayMatchClusterScope=%v", fs.Name, fs.Spec.PriorityLevelConfiguration.Name, ftr.wellFormed, ftr.matchesAllResourceRequests, ftr.matchesAllNonResourceRequests, mayMatchClusterScope)
    	}
    	return ftr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    		newFTRs[ftr.fs.Name] = ftr
    		if ftr.wellFormed {
    			if ftr.matchesAllNonResourceRequests && fsPrecedes(ftr.fs, catchAlls[false]) {
    				catchAlls[false] = ftr.fs
    			}
    			if ftr.matchesAllResourceRequests && fsPrecedes(ftr.fs, catchAlls[true]) {
    				catchAlls[true] = ftr.fs
    			}
    		}
    		if testDebugLogs {
    			t.Logf("For trial %s, adding wf=%v FlowSchema %s", trial, ftr.wellFormed, fcfmt.Fmt(ftr.fs))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top