Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for randString (0.34 sec)

  1. cmd/erasure-sets_test.go

    func BenchmarkCrcHash(b *testing.B) {
    	cases := []struct {
    		key int
    	}{
    		{16},
    		{64},
    		{128},
    		{256},
    		{512},
    		{1024},
    	}
    	for _, testCase := range cases {
    		key := randString(testCase.key)
    		b.Run("", func(b *testing.B) {
    			b.SetBytes(1024)
    			b.ReportAllocs()
    			b.ResetTimer()
    			for b.Loop() {
    				crcHashMod(key, 16)
    			}
    		})
    	}
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    		remain--
    	}
    
    	return *(*string)(unsafe.Pointer(&b))
    }
    
    // generate random object name.
    func getRandomObjectName() string {
    	return randString(16)
    }
    
    // generate random bucket name.
    func getRandomBucketName() string {
    	return randString(60)
    }
    
    // construct URL for http requests for bucket operations.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 77K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    		// Upload objects which modtime as one week ago, supposed to be expired by ILM
    		for range upload.expired {
    			_, err := obj.PutObject(context.Background(), upload.bucket, randString(32),
    				mustGetPutObjReader(t,
    					bytes.NewBufferString(objContent),
    					int64(len(objContent)),
    					hex.EncodeToString(objMd5[:]),
    					""),
    				ObjectOptions{MTime: oneWeekAgo},
    			)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 76.1K bytes
    - Viewed (0)
Back to top