Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for amet (0.17 sec)

  1. src/archive/tar/fuzz_test.go

    package tar
    
    import (
    	"bytes"
    	"io"
    	"testing"
    )
    
    func FuzzReader(f *testing.F) {
    	b := bytes.NewBuffer(nil)
    	w := NewWriter(b)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    	AdminUpdateApplyFailure      = "XMinioAdminUpdateApplyFailure"
    )
    
    // Returns true if the madmin.TraceInfo should be traced,
    // false if certain conditions are not met.
    // - input entry is not of the type *madmin.TraceInfo*
    // - errOnly entries are to be traced, not status code 2xx, 3xx.
    // - madmin.TraceInfo type is asked by opts
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  3. src/cmd/asm/internal/asm/asm.go

    	// fmt.Printf("%s %+v\n", op, a)
    	prog := &obj.Prog{
    		Ctxt: p.ctxt,
    		Pos:  p.pos(),
    		As:   op,
    	}
    	switch len(a) {
    	case 0:
    		// Nothing to do.
    	case 1:
    		if p.arch.UnaryDst[op] || op == obj.ARET || op == obj.AGETCALLERPC {
    			// prog.From is no address.
    			prog.To = a[0]
    		} else {
    			prog.From = a[0]
    			// prog.To is no address.
    		}
    		if p.arch.Family == sys.PPC64 && arch.IsPPC64NEG(op) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  4. cmd/server-main.go

    	// Initializing sub-systems needs a retry mechanism for
    	// the following reasons:
    	//  - Read quorum is lost just after the initialization
    	//    of the object layer.
    	//  - Write quorum not met when upgrading configuration
    	//    version is needed, migration is needed etc.
    	rquorum := InsufficientReadQuorum{}
    	wquorum := InsufficientWriteQuorum{}
    
    	// One of these retriable errors shall be retried.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 33K bytes
    - Viewed (1)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminConfigNoQuorum: {
    		Code:           "XMinioAdminConfigNoQuorum",
    		Description:    "Configuration update failed because server quorum was not met",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrAdminConfigTooLarge: {
    		Code: "XMinioAdminConfigTooLarge",
    		Description: fmt.Sprintf("Configuration data provided exceeds the allowed maximum of %d bytes",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 90.6K bytes
    - Viewed (6)
Back to top