Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for fs (0.12 sec)

  1. cmd/metacache-walk.go

    	ForwardTo string
    
    	// Limit the number of returned objects if > 0.
    	Limit int
    
    	// DiskID contains the disk ID of the disk.
    	// Leave empty to not check disk ID.
    	DiskID string
    }
    
    // supported FS for Nlink optimization in readdir.
    const (
    	xfs  = "XFS"
    	ext4 = "EXT4"
    )
    
    // WalkDir will traverse a directory and return all entries found.
    // On success a sorted meta cache stream will be returned.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils_gen.go

    				var zb0002 int
    				zb0002, err = dc.ReadInt()
    				if err != nil {
    					err = msgp.WrapError(err, "ResyncStatus")
    					return
    				}
    				z.ResyncStatus = ResyncStatusType(zb0002)
    			}
    		case "fs":
    			z.FailedSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "FailedSize")
    				return
    			}
    		case "frc":
    			z.FailedCount, err = dc.ReadInt64()
    			if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 61.1K bytes
    - Viewed (0)
  3. cmd/prepare-storage.go

    	// is invalid. This function returns success for the
    	// most part unless one of the formats is not consistent
    	// with expected Erasure format. For example if a user is
    	// trying to pool FS backend into an Erasure set.
    	if err = checkFormatErasureValues(formatConfigs, storageDisks, setDriveCount); err != nil {
    		return nil, nil, err
    	}
    
    	// All disks report unformatted we should initialized everyone.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  4. cmd/bucket-metadata.go

    		configData, info, err := readConfigWithMetadata(ctx, objectAPI, configFile, ObjectOptions{})
    		if err != nil {
    			if _, ok := err.(ObjectExistsAsDirectory); ok {
    				// in FS mode it possible that we have actual
    				// files in this folder with `.minio.sys/buckets/bucket/configFile`
    				continue
    			}
    			if errors.Is(err, errConfigNotFound) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    		}
    		return &m
    	}
    
    	anonymizeCmdLine := func(cmdLine string) string {
    		if anonParam != anonymizeStrict {
    			return cmdLine
    		}
    
    		if !globalIsDistErasure {
    			// FS mode - single server - hard code to `server1`
    			anonCmdLine := strings.ReplaceAll(cmdLine, globalLocalNodeName, "server1")
    			if len(globalMinioConsoleHost) > 0 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  6. cmd/object-handlers_test.go

    const (
    	None Fault = iota
    	MissingContentLength
    	TooBigObject
    	TooBigDecodedLength
    	BadSignature
    	BadMD5
    	MissingUploadID
    )
    
    // Wrapper for calling HeadObject API handler tests for both Erasure multiple disks and FS single drive setup.
    func TestAPIHeadObjectHandler(t *testing.T) {
    	ExecObjectLayerAPITest(t, testAPIHeadObjectHandler, []string{"HeadObject"})
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  7. cmd/bucket-replication-utils.go

    	// Status of resync operation
    	ResyncStatus ResyncStatusType `json:"resyncStatus" msg:"rst"`
    	// Failed size in bytes
    	FailedSize int64 `json:"failedReplicationSize"  msg:"fs"`
    	// Total number of failed operations
    	FailedCount int64 `json:"failedReplicationCount"  msg:"frc"`
    	// Completed size in bytes
    	ReplicatedSize int64 `json:"completedReplicationSize"  msg:"rs"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
  8. cmd/xl-storage-format_test.go

    	xhttp "github.com/minio/minio/internal/http"
    )
    
    func TestIsXLMetaFormatValid(t *testing.T) {
    	tests := []struct {
    		name    int
    		version string
    		format  string
    		want    bool
    	}{
    		{1, "123", "fs", false},
    		{2, "123", xlMetaFormat, false},
    		{3, xlMetaVersion100, "test", false},
    		{4, xlMetaVersion101, "hello", false},
    		{5, xlMetaVersion100, xlMetaFormat, true},
    		{6, xlMetaVersion101, xlMetaFormat, true},
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  9. cmd/data-scanner.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/binary"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io/fs"
    	"math"
    	"math/rand"
    	"os"
    	"path"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/bucket/lifecycle"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 11:18:58 GMT 2024
    - 47.6K bytes
    - Viewed (0)
  10. cmd/testdata/xl-meta-merge.zip

    "¾ýt~JEe˨{zªHovV„]˺`mN¾ÊWBfWo †ÃEGºDæÓ H ›> †l %gQ G~Y*›: !¼ 4~„GxRûNsnyEpRª|ÿ‚¯åàòïäNm¢qbï-eDW¸Bzgt»"zeÖZs~ toMDlMes®êwHºFzs¨ÖGrû^qK@ª¾>pï¢ 1 |mÈI QwW@¨z{DsªÖ fs þêW\„@qrï{@ûhk¦ 0ÿê qE¸^wªÜxo> sZWqtïŽBYF܈EZïEyBkåKjôc¢Ô^ UDŒeÈ}SÐ|} ªcYlqIì}J M° }b›#¾Fï~vmc÷5`@ò8ïPeòJˆ}„ZÖyJc¢ü¬ˆ\PU¨¡eYuxSñ¢G`CQäêñºjóFr¨<rfÂzZq¢»•ûk`Icjñ–}cxyW¸ñ@aS~fs(puTÌ ÇaNd²H‹r O¾bñÀ êkDEqH¸çìs²@D}êLqAŒ{V ÎyTt¢Z‹ Dt bf Ô™ŒÂÍ T{€ e@ ¼KòJˆ^\G†—QT ®…yxYs^wˆÖKKNGåZ_Pg~Wˆcp¸zøoºinNqTzyf¼ÆuNEcH ºº's\<àe 8› # 93 ' & Œ </ " %< H vW²|vÜt@_...
    ZIP Archive
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
Back to top