Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Boolean (0.16 sec)

  1. tests/migrate_test.go

    	}
    
    	type ColumnStruct2 struct {
    		gorm.Model
    		Name         string
    		StringBool   bool // change existing boolean column from string to boolean
    		SmallintBool bool // change existing boolean column from smallint or other to boolean
    	}
    
    	DB.Migrator().DropTable(&ColumnStruct{})
    
    	if err := DB.AutoMigrate(&ColumnStruct{}); err != nil {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Mar 18 11:24:16 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidLifecycleQueryParameter: {
    		Code:           "XMinioInvalidLifecycleParameter",
    		Description:    "The boolean value provided for withUpdatedAt query parameter was invalid.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminNoSuchUser: {
    		Code:           "XMinioAdminNoSuchUser",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (7)
  3. internal/bucket/lifecycle/lifecycle_test.go

    	lc := Lifecycle{
    		Rules: []Rule{
    			{
    				ID:     "ExpiredObjectDeleteAllVersions-20",
    				Status: "Enabled",
    				Expiration: Expiration{
    					set:       true,
    					DeleteAll: Boolean{val: true, set: true},
    					Days:      20,
    				},
    			},
    			{
    				ID:     "Transition-10",
    				Status: "Enabled",
    				Transition: Transition{
    					set:          true,
    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)
  4. cmd/bucket-handlers.go

    		IsOwner:         false,
    	})
    
    	encodedSuccessResponse := encodeResponse(PolicyStatus{
    		IsPublic: func() string {
    			// Silly to have special 'boolean' values yes
    			// but complying with silly implementation
    			// https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketPolicyStatus.html
    			if readable && writable {
    				return "TRUE"
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
Back to top