Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ia (0.11 sec)

  1. internal/s3select/sql/value.go

    		return nil
    
    	case okA && okB:
    		// Both Values are untyped so try the types in order:
    		// int, float, bool, string
    
    		// Check for numeric inference
    		iA, okAi := a.bytesToInt()
    		iB, okBi := b.bytesToInt()
    		if okAi && okBi {
    			a.setInt(iA)
    			b.setInt(iB)
    			return nil
    		}
    
    		fA, okAf := a.bytesToFloat()
    		fB, okBf := b.bytesToFloat()
    		if okAf && okBf {
    			a.setFloat(fA)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Feb 25 20:31:19 GMT 2022
    - 20.2K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    	}
    }
    
    func errUnsupportedStorageClass(err error) *s3Error {
    	return &s3Error{
    		code:       "UnsupportedStorageClass",
    		message:    "Encountered an invalid storage class. Only STANDARD, STANDARD_IA, and ONEZONE_IA storage classes are supported.",
    		statusCode: 400,
    		cause:      err,
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

                                   </Filter>
                                   <Status>Enabled</Status>
                                   <Transition>
                                     <StorageClass>STANDARD_IA</StorageClass>
                                     <Days>30</Days>
                                   </Transition>
                                  </Rule>
                              </LifecycleConfiguration>`,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
Back to top