Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for show (2.94 sec)

  1. internal/event/name.go

    package event
    
    import (
    	"encoding/json"
    	"encoding/xml"
    )
    
    // Name - event type enum.
    // Refer http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html#notification-how-to-event-types-and-destinations
    // for most basic values we have since extend this and its not really much applicable other than a reference point.
    // "s3:Replication:OperationCompletedReplication" is a MinIO extension.
    type Name int
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-rebalance.go

    		return fmt.Errorf("no online drives found for set with endpoints %s", set.getEndpoints())
    	}
    
    	// However many we ask, versions must exist on ~50%
    	listingQuorum := (set.setDriveCount + 1) / 2
    
    	// How to resolve partial results.
    	resolver := metadataResolutionParams{
    		dirQuorum: listingQuorum, // make sure to capture all quorum ratios
    		objQuorum: listingQuorum, // make sure to capture all quorum ratios
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 19:29:28 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  3. cmd/erasure-server-pool.go

    				requestedVersions := 0
    				if opts.LatestOnly {
    					requestedVersions = 1
    				}
    
    				// However many we ask, versions must exist on ~50%
    				listingQuorum := (askDisks + 1) / 2
    
    				// How to resolve partial results.
    				resolver := metadataResolutionParams{
    					dirQuorum:         listingQuorum,
    					objQuorum:         listingQuorum,
    					bucket:            bucket,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 80.5K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    				return
    			}
    			if proxy.Err != nil {
    				writeErrorResponse(ctx, w, toAPIError(ctx, proxy.Err), r.URL)
    				return
    			}
    			if gr != nil {
    				if !gr.ObjInfo.VersionPurgeStatus.Empty() {
    					// Shows the replication status of a permanent delete of a version
    					w.Header()[xhttp.MinIODeleteReplicationStatus] = []string{string(gr.ObjInfo.VersionPurgeStatus)}
    				}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  5. cmd/testdata/undeleteable-object.tgz

    s6Ï> R i >Ý¥§ŠêV8ð¦Äxä·ÅG òjê› åò}‹v«¥¾7f­¤ @ šÇìd£ >gW^èN4Õ̧®T^J&Aµ–(M ± çÃYÉqOz A¸¹š½Ñ ú¾= –/•ýg“šï ø º ˆ aTÑD9„‚‹‚>¿Ó, Ú£)ý‘B!Õd(²öTw¤Ò Ç»Ú1±!‰ ¥7 ž½ýClªÛ •©œ5™a ƒ´Á ¡{ ~–·ÅÌï î§Sãs\’ üE‹j é ¥ FËÝ s×Æ qŽsŸ  *2Á8X;¦§½/òz ý £&ÃQë=TÞ Q-?…Ѧð-SÔ™£&shOÆ·% uß êä¿…û6ù+ 4m í a!Ssµ­( ` LüËârô7 ÞÀƒ5Ѓè›ö¦e°f rÚÐŒ w»§ î7 ö7ºêÒ½´f‚ F€‰t>Ìäô@&K}¨üš’a Γ)k{ôÄJ a=ýþÉÄÜuX× òð3ŠÍü”K¾}“ižê+h ü 7b‡œFºÂ|íNråQ o]$np F±`”¢ vÝ^Yhâ\¸ÌåBa¿ì æÏFm‹÷¤¥,m ™Ê/¤˜i© Öy~—ˆ÷C%n\­ xß/ ^ ƒå #ñ]°” “Ž‡Së¸| À®Û]rß ={ï ê4tÔ±#Â&ÅònüA©L...
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 00:31:12 GMT 2024
    - 8.7M bytes
    - Viewed (0)
  6. cmd/storage-rest-server.go

    		}
    		logger.Fatal(config.ErrUnableToWriteInBackend(err).Hint(hint), "Unable to initialize backend")
    	case errors.Is(err, errDiskAccessDenied):
    		// Show a descriptive error with a hint about how to fix it.
    		var username string
    		if u, err := user.Current(); err == nil {
    			username = u.Username
    		} else {
    			username = "<your-username>"
    		}
    		var hint string
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  7. .github/workflows/vulncheck.yml

              check-latest: true
          - name: Get official govulncheck
            run: go install golang.org/x/vuln/cmd/govulncheck@latest
            shell: bash
          - name: Run govulncheck
            run: govulncheck -show verbose ./...
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 16 18:48:56 GMT 2024
    - 687 bytes
    - Viewed (0)
  8. docs/ftp/README.md

    45 bytes received in 00:00 (3.55 KiB/s)
    ...
    ```
    
    
    Following example shows connecting via sftp client using `minioadmin` credentials, and list a bucket named `runner`:
    
    ```
    sftp -P 8022 minioadmin@localhost
    minioadmin@localhost's password:
    Connected to localhost.
    sftp> ls runner/
    chunkdocs  testdir
    ```
    
    Following example shows how to download an object locally via `sftp` client:
    
    ```
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 30 15:15:45 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  9. cmd/common-main.go

    		if mousetrap.StartedByExplorer() {
    			fmt.Printf("Don't double-click %s\n", os.Args[0])
    			fmt.Println("You need to open cmd.exe/PowerShell and run it from the command line")
    			fmt.Println("Refer to the docs here on how to run it as a Windows Service https://github.com/minio/minio-service/tree/master/windows")
    			fmt.Println("Press the Enter Key to Exit")
    			fmt.Scanln()
    			os.Exit(1)
    		}
    	}
    
    	logger.Init(GOPATH, GOROOT)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 35.8K bytes
    - Viewed (2)
  10. cmd/erasure-server-pool-decom.go

    		return fmt.Errorf("no online drives found for set with endpoints %s", set.getEndpoints())
    	}
    
    	// However many we ask, versions must exist on ~50%
    	listingQuorum := (set.setDriveCount + 1) / 2
    
    	// How to resolve partial results.
    	resolver := metadataResolutionParams{
    		dirQuorum: listingQuorum, // make sure to capture all quorum ratios
    		objQuorum: listingQuorum, // make sure to capture all quorum ratios
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 41.5K bytes
    - Viewed (1)
Back to top