Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Ex (0.22 sec)

  1. internal/rest/client.go

    const (
    	offline = iota
    	online
    	closed
    )
    
    // NetworkError - error type in case of errors related to http/transport
    // for ex. connection refused, connection reset, dns resolution failure etc.
    // All errors returned by storage-rest-server (ex errFileNotFound, errDiskNotFound) are not considered to be network errors.
    type NetworkError struct {
    	Err error
    }
    
    func (n *NetworkError) Error() string {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  2. cmd/testdata/undeleteable-object.tgz

    d6566afb36d109141150¡v ÎùÐþE ¤nullÅ ,_[W-'w Ú!™³î”ïp O#ÿ ‰M0î µ\ 6|p*ÿçÿ³‚Å ê /8Ž„q! p-Þ(0n °ógŽï#Ñó L@²s ÄkaÐÃÖ¬•8Zô ÑÕ ¥$Òlƒö’»\ “ç ?V-àÖ< [ot6ÖQçôß÷ëmí‡ < ‰}ÃMŒ§ Oñ615±@0HÆ… ' ]v ¤Ï +£íÞ¾0ßJ\ A!t÷ù £ÇõäZôJ ÏæD˜—tX8={ ñ ‰møû)7YŠaú0 c¯€êFԦáìQÜ…ÛÙ EX$:Z[ˆ0Î?ˆtx|v  ØiuÉ«³©ºØ\| © U N‚_ ’³4ÃEh<Ϭ ¥’¹ “y (Cu”ý’.¥vé"ú`×®ü S’zU˜ ^S6¿Nöâaõ»à ðP@ ~uôÆ8 Ía®Á c° ¾±ÁYXîP°Á·ü¹²õ ò3»0ì“¥€cˆç ÞÒà ÈRk9*K¢¥ß w\^Ð I ,7‡ g’РĦüA {3Åý »á6 ô Òb\9ºŽÞ쳬ô¹,w…BÉé)uÌÊŠ ù?Z \œáýóLjä‹h óÌ îBM†,êó(†ayÇ °páËʸ[É Ÿ® vâ鱟§î=...
    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)
  3. cmd/test-utils_test.go

    // and assert the error response. The purpose is to validate the API handlers response when the object layer is uninitialized.
    // Usage hint: Should be used at the end of the API end points tests (ex: check the last few lines of `testAPIListObjectPartsHandler`),
    // need a sample HTTP request to be sent as argument so that the relevant handler is called, the handler registration is expected
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  4. cmd/utils.go

    }
    
    func iamPolicyClaimNameSA() string {
    	return "sa-policy"
    }
    
    // On MinIO a directory object is stored as a regular object with "__XLDIR__" suffix.
    // For ex. "prefix/" is stored as "prefix__XLDIR__"
    func encodeDirObject(object string) string {
    	if HasSuffix(object, slashSeparator) {
    		return strings.TrimSuffix(object, slashSeparator) + globalDirSuffix
    	}
    	return object
    }
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top