Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hexarchy (0.24 sec)

  1. cmd/format-erasure.go

    	} `json:"xl"`
    }
    
    // formatErasureV3 struct is same as formatErasureV2 struct except that formatErasureV3.Erasure.Version is "3" indicating
    // the simplified multipart backend which is a flat hierarchy now.
    // In .minio.sys/multipart we have:
    // sha256(bucket/object)/uploadID/[xl.meta, part.1, part.2 ....]
    type formatErasureV3 struct {
    	formatMetaV1
    	Erasure struct {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 23.4K bytes
    - Viewed (0)
  2. cmd/xl-storage_test.go

    		expectedBuf []byte
    		expectedErr error
    	}{
    		// Successful read at offset 0 and proper buffer size. - 1
    		{
    			volume, "myobject", 0, 5,
    			[]byte("hello"), nil,
    		},
    		// Success read at hierarchy. - 2
    		{
    			volume, "path/to/my/object", 0, 5,
    			[]byte("hello"), nil,
    		},
    		// Object is a directory. - 3
    		{
    			volume, "object-as-dir",
    			0, 5, nil, errIsNotRegular,
    		},
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/podcgroupns.go

    	HierarchyID    string
    	ControllerList string
    	GroupPath      string
    }
    
    // GetCGroups returns a slice of cgroups for pid using fs for filesystem calls.
    //
    // The expected cgroup format is "hierarchy-ID:controller-list:cgroup-path", and
    // this function will return an error if every cgroup does not meet that format.
    //
    // For more information, see:
    //   - http://man7.org/linux/man-pages/man7/cgroups.7.html
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 11K bytes
    - Viewed (0)
Back to top