Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for 13 (0.12 sec)

  1. internal/bucket/replication/replication_test.go

    			destBucket:            "destinationbucket",
    			sameTarget:            false,
    			expectedParsingErr:    fmt.Errorf("invalid destination '%v'", "destinationbucket2"),
    			expectedValidationErr: nil,
    		},
    		// 13 missing role in config and destination ARN has target ARN
    		{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  2. src/archive/tar/common.go

    var sysStat func(fi fs.FileInfo, h *Header, doNameLookups bool) error
    
    const (
    	// Mode constants from the USTAR spec:
    	// See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	c_ISUID = 04000 // Set uid
    	c_ISGID = 02000 // Set gid
    	c_ISVTX = 01000 // Save text (sticky bit)
    
    	// Common Unix mode constants; these are not defined in any common tar standard.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  3. cmd/object-handlers_test.go

    		{"enc-small-0", []int64{11}, mapCopy(metaWithSSEC)},
    		{"enc-small-1", []int64{509}, mapCopy(metaWithSSEC)},
    		{"enc-small-2", []int64{5 * oneMiB}, mapCopy(metaWithSSEC)},
    		// cases 13-16: multipart part objects with encryption
    		{"enc-mp-0", []int64{5 * oneMiB, 1}, mapCopy(metaWithSSEC)},
    		{"enc-mp-1", []int64{5*oneMiB + 1, 1}, mapCopy(metaWithSSEC)},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  4. cmd/object-api-putobject_test.go

    		12: {bucketName: bucket, objName: object, inputData: []byte("ijkl"), inputMeta: map[string]string{"etag": "09a0877d04abf8759f99adec02baf579"}, inputDataSize: int64(len("ijkl"))},
    		13: {bucketName: bucket, objName: object, inputData: []byte("mnop"), inputMeta: map[string]string{"etag": "e132e96a5ddad6da8b07bba6f6131fef"}, inputDataSize: int64(len("mnop"))},
    
    		// With no metadata
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 25.8K bytes
    - Viewed (0)
  5. cmd/batch-rotate_gen.go

    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *BatchKeyRotateFilter) Msgsize() (s int) {
    	s = 1 + 10 + msgp.DurationSize + 10 + msgp.DurationSize + 13 + msgp.TimeSize + 14 + msgp.TimeSize + 5 + msgp.ArrayHeaderSize
    	for za0001 := range z.Tags {
    		s += z.Tags[za0001].Msgsize()
    	}
    	s += 9 + msgp.ArrayHeaderSize
    	for za0002 := range z.Metadata {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Dec 02 10:51:33 GMT 2023
    - 27.1K bytes
    - Viewed (0)
  6. src/bufio/bufio_test.go

    }
    
    func (r13 *rot13Reader) Read(p []byte) (int, error) {
    	n, err := r13.r.Read(p)
    	for i := 0; i < n; i++ {
    		c := p[i] | 0x20 // lowercase byte
    		if 'a' <= c && c <= 'm' {
    			p[i] += 13
    		} else if 'n' <= c && c <= 'z' {
    			p[i] -= 13
    		}
    	}
    	return n, err
    }
    
    // Call ReadByte to accumulate the text of a file
    func readBytes(buf *Reader) string {
    	var b [1000]byte
    	nb := 0
    	for {
    		c, err := buf.ReadByte()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  7. cmd/xl-storage_test.go

    		{
    			volume, "", 14, 1, nil, errIsNotRegular,
    		},
    		// Non existent volume name - 12
    		{
    			"abcd", "", 14, 1, nil, errVolumeNotFound,
    		},
    		// Non existent filename - 13
    		{
    			volume, "abcd", 14, 1, nil, errFileNotFound,
    		},
    	}
    
    	// Create all files needed during testing.
    	appendFiles := testCases[:4]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
Back to top