Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for verifyList (0.52 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. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

            given:
            buildFile << '''
                verifyInt {
                    prop.empty()
                    prop[1] = 111
                    prop[2] = project.provider { 222 }
                    expected = [1: 111, 2: 222]
                }
                '''.stripIndent()
    
            expect:
            succeeds('verifyInt')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. src/encoding/gob/codec_test.go

    func TestIntCodec(t *testing.T) {
    	for u := uint64(0); ; u = (u + 1) * 7 {
    		// Do positive and negative values
    		i := int64(u)
    		verifyInt(i, t)
    		verifyInt(-i, t)
    		verifyInt(^i, t)
    		if u&(1<<63) != 0 {
    			break
    		}
    	}
    	verifyInt(-1<<63, t) // a tricky case
    }
    
    // The result of encoding a true boolean with field number 7
    var boolResult = []byte{0x07, 0x01}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  4. 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