Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for verifyList (0.14 sec)

  1. pkg/scheduler/util/assumecache/assume_cache_test.go

    		objs = append(objs, obj)
    		informer.add(obj)
    	}
    
    	// List them
    	verifyList(ktesting.WithStep(tCtx, "after add"), cache, objs, "")
    
    	// Update an object.
    	updatedObj := makeObj("test-pvc3", "2", "")
    	objs[3] = updatedObj
    	informer.update(updatedObj)
    
    	// List them
    	verifyList(ktesting.WithStep(tCtx, "after update"), cache, objs, "")
    
    	// Delete a PV
    	deletedObj := objs[7]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	"testing"
    	"time"
    )
    
    type verifyTest struct {
    	name          string
    	leaf          string
    	intermediates []string
    	roots         []string
    	currentTime   int64
    	dnsName       string
    	systemSkip    bool
    	systemLax     bool
    	keyUsages     []ExtKeyUsage
    
    	errorCallback  func(*testing.T, error)
    	expectedChains [][]string
    }
    
    var verifyTests = []verifyTest{
    	{
    		name:          "Valid",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top