Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for Size (0.04 sec)

  1. cmd/site-replication.go

    			if svcErr != nil {
    				return info, errSRBackendIssue(svcErr)
    			}
    		}
    		info.UserPolicies = make(map[string]madmin.SRPolicyMapping, userPolicyMap.Size())
    		addPolicy := func(t IAMUserType, mp *xsync.MapOf[string, MappedPolicy]) {
    			mp.Range(func(k string, mp MappedPolicy) bool {
    				info.UserPolicies[k] = madmin.SRPolicyMapping{
    					IsGroup:     false,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	destroyFunc, registry := NewTestGenericStoreRegistry(t)
    	defer destroyFunc()
    
    	// Overwrite the underlying storage interface so that it counts GetList calls
    	// and reduce the default page size to 2.
    	storeWithCounter := &storageWithCounter{Interface: registry.Storage.Storage}
    	registry.Storage.Storage = storeWithCounter
    	originalDeleteCollectionPageSize := deleteCollectionPageSize
    	deleteCollectionPageSize = 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		if err != nil {
    			t.Fatalf("large get: %v", err)
    		}
    		buf := make([]byte, len(testString))
    		n, err := io.ReadFull(res.Body, buf)
    		if err != nil {
    			t.Fatalf("partial read of large response: size=%d, %v", n, err)
    		}
    		if e, g := testString, string(buf); e != g {
    			t.Errorf("partial read got %q, expected %q", g, e)
    		}
    		res.Body.Close()
    		// Read on the body, even though it's closed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    			Hash: pkix.AlgorithmIdentifier{
    				Algorithm:  hashOID,
    				Parameters: asn1.NullRawValue,
    			},
    			MGF: pkix.AlgorithmIdentifier{
    				Algorithm: oidMGF1,
    			},
    			SaltLength:   hashFunc.Size(),
    			TrailerField: 1,
    		}
    
    		mgf1Params := pkix.AlgorithmIdentifier{
    			Algorithm:  hashOID,
    			Parameters: asn1.NullRawValue,
    		}
    
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top