Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 77 for light (0.03 sec)

  1. cmd/erasure-sets.go

    		}(endpoint)
    	}
    
    	wg.Wait()
    }
    
    // monitorAndConnectEndpoints this is a monitoring loop to keep track of disconnected
    // endpoints by reconnecting them and making sure to place them into right position in
    // the set topology, this monitoring happens at a given monitoring interval.
    func (s *erasureSets) monitorAndConnectEndpoints(ctx context.Context, monitorInterval time.Duration) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. internal/s3select/sql/parser.go

    // terms separated by +/-
    type Operand struct {
    	Left  *MultOp     `parser:"@@"`
    	Right []*OpFactor `parser:"(@@)*"`
    }
    
    // OpFactor represents the right-side of a +/- operation.
    type OpFactor struct {
    	Op    string  `parser:"@(\"+\" | \"-\")"`
    	Right *MultOp `parser:"@@"`
    }
    
    // MultOp represents a single term followed by an optional sequence of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. internal/amztime/parse.go

    	"time"
    )
    
    // Supported amz date formats.
    var amzDateFormats = []string{
    	// Do not change this order, x-amz-date format is usually in
    	// iso8601Format rest are meant for relaxed handling of other
    	// odd SDKs that might be out there.
    	"20060102T150405Z",
    	time.RFC1123,
    	time.RFC1123Z,
    	// Add new AMZ date formats here.
    }
    
    // ErrMalformedDate always returned for dates that cannot be parsed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. .github/PULL_REQUEST_TEMPLATE.md

    All community contributions in this pull request are licensed to the project maintainers
    under the terms of the [Apache 2 license](https://www.apache.org/licenses/LICENSE-2.0). 
    By creating this pull request I represent that I have the right to license the 
    contributions to the project maintainers under the Apache 2 license.
    
    ## Description
    
    
    ## Motivation and Context
    
    
    ## How to test this PR?
    
    
    ## Types of changes
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. internal/auth/credentials.go

    func ContainsReservedChars(s string) bool {
    	return strings.ContainsAny(s, reservedChars)
    }
    
    // IsAccessKeyValid - validate access key for right length.
    func IsAccessKeyValid(accessKey string) bool {
    	return len(accessKey) >= accessKeyMinLen
    }
    
    // IsSecretKeyValid - validate secret key for right length.
    func IsSecretKeyValid(secretKey string) bool {
    	return len(secretKey) >= secretKeyMinLen
    }
    
    // Default access and secret keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. cmd/signature-v4-parser_test.go

    				"us-west-1",
    				"s3",
    				"ABCD"),
    			expectedCredentials: credentialHeader{},
    			expectedErrCode:     ErrInvalidRequestVersion,
    		},
    		// Test Case - 9.
    		// Test case with right inputs. Expected to return a valid CredentialHeader.
    		// "aws4_request" is the valid request version.
    		{
    			inputCredentialStr: generateCredentialStr(
    				"Z7IXGOO6BZ0REAN1Q26I",
    				sampleTimeStr,
    				"us-west-1",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  7. docs/kms/README.md

    The main difference between various MinIO-KMS deployments is the KMS implementation. The following table helps you select the right option for your use case:
    
    | KMS                                                                                          | Purpose                                                           |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. cmd/generic-handlers.go

    			}
    			return
    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    // setBucketForwardingMiddleware middleware forwards the path style requests
    // on a bucket to the right bucket location, bucket to IP configuration
    // is obtained from centralized etcd configuration service.
    func setBucketForwardingMiddleware(h http.Handler) http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/list.md

    | `minio_s3_requests_incoming_total`            | Volatile number of total incoming S3 requests.           |
    | `minio_s3_requests_inflight_total`            | Total number of S3 requests currently in flight.         |
    | `minio_s3_requests_rejected_auth_total`       | Total number S3 requests rejected for auth failure.      |
    | `minio_s3_requests_rejected_header_total`     | Total number S3 requests rejected for invalid header.    |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  10. internal/ioutil/ioutil.go

    			return written, err
    		}
    
    		if nw != int64(len(buf)) {
    			return written, io.ErrShortWrite
    		}
    
    		if totalSize > 0 && written == totalSize {
    			// we have written the entire stream, return right here.
    			return written, nil
    		}
    
    		if eof {
    			// We reached EOF prematurely but we did not write everything
    			// that we promised that we would write.
    			if totalSize > 0 && written != totalSize {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top