Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for stty (0.14 sec)

  1. cmd/metacache-set.go

    	defer func() {
    		for _, r := range readers {
    			r.Close()
    		}
    	}()
    	for i := range disks {
    		r, w := io.Pipe()
    		// Make sure we close the pipe so blocked writes doesn't stay around.
    		defer r.CloseWithError(context.Canceled)
    
    		readers[i] = newMetacacheReader(r)
    		d := disks[i]
    
    		// Send request to each disk.
    		go func() {
    			var werr error
    			if d == nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 19:52:52 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  2. docs/bucket/versioning/README.md

    - Existing or newer buckets can be created with versioning enabled and eventually can be suspended as well. Existing versions of objects stay as is and can still be accessed using the version ID.
    - All versions, including delete-markers should be deleted before deleting a bucket.
    - **Versioning feature is only available in erasure coded and distributed erasure coded setups**.
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu May 04 21:43:52 GMT 2023
    - 11.9K bytes
    - Viewed (1)
  3. cmd/xl-storage-format-v2.go

    // function shouldn't be further extended to update immutable
    // values such as ErasureInfo, ChecksumInfo.
    //
    // Metadata is only updated to new values, existing values
    // stay as is, if you wish to update all values you should
    // update all metadata freshly before calling this function
    // in-case you wish to clear existing metadata.
    func (x *xlMetaV2) UpdateObjectVersion(fi FileInfo) error {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  4. cmd/testdata/xl-meta-merge.zip

    ’~tNNI¨1¯uñPInu mXéë~hãûÕB æpmŸÔ^zjHW`^ys„s\Wxiìô²u}DRWt®kñq¯kSpim»SávyW |ãNsstÜxxböÌ"dI<—7l?‘öFkZPmA_eTܪIpqrBIºUISTñ FI`ãwdV +c@ò;Ö9Fkxxgi\_†à)[x_sKrS âž_SR]ÅýòyiZp˜¤·wAºûy`¼NqËB€V\mˆrKÎpiUsñh^†w__ì ê 05ê‹az‰ tÑ÷ôÕ7jsœ¢qnªK÷4sJDmt¸[Gt©z· JªñNneåP¾~NowGsX `Aan^¼sTÜY¾—_X ‘¢µI~Xs^°¸.mqò ² ò ï@ªBz{}Õmp TßtlgZk²mx„À¬»ÆPsIT¢o}yrû(}¼ / ¢rxpZª—1‘²“2”¸ š ¨¡‚¸šŠ olH ~sM¸Iò¨SWV`¾|be¼~ñs@¨å\CnwX^SqjI. m{{ˆgqn S_mˆv\e††p[_EïT†Ü]ªAp}}@}¼hÇåckH_²ˆßHjwu~¼ þþmyTÕ°Šedfˆær{yM}¦^P}¾y¥VVMXNqªñb²zPK² QZ ]evBqd ÂЫ+M¼7=òŽq\EñêAsTX...
    ZIP Archive
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  5. internal/logger/target/console/console.go

    	"github.com/minio/pkg/v2/logger/message/log"
    )
    
    // Target implements loggerTarget to send log
    // in plain or json format to the standard output.
    type Target struct{}
    
    // Validate - validate if the tty can be written to
    func (c *Target) Validate() error {
    	return nil
    }
    
    // Endpoint returns the backend endpoint
    func (c *Target) Endpoint() string {
    	return ""
    }
    
    func (c *Target) String() string {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 3.9K bytes
    - Viewed (0)
Back to top