Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for imet (0.18 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 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cni/pkg/iptables/iptables_linux.go

    	return forEachInpodMarkIPRule(cfg, netlink.RuleDel)
    }
    
    func forEachInpodMarkIPRule(cfg *Config, f func(*netlink.Rule) error) error {
    	var rules []*netlink.Rule
    	families := []int{unix.AF_INET}
    	if cfg.EnableInboundIPv6 {
    		families = append(families, unix.AF_INET6)
    	}
    	for _, family := range families {
    		// Equiv:
    		// ip rule add fwmark 0x111/0xfff pref 32764 lookup 100
    		//
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  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