Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Galt (0.22 sec)

  1. internal/s3select/sql/value_test.go

    			wantAlt: "",
    		},
    	}
    
    	for i, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			v := valueBuilders[i]()
    			vAlt := altValueBuilders[i]()
    			if got := v.CSVString(); got != tt.want {
    				t.Errorf("CSVString() = %v, want %v", got, tt.want)
    			}
    			if got := vAlt.CSVString(); got != tt.wantAlt {
    				t.Errorf("CSVString() = %v, want %v", got, tt.wantAlt)
    			}
    		})
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 06 16:56:10 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  2. cmd/common-main.go

    	minio.MaxRetry = 1
    	madmin.MaxRetry = 1
    
    	currentReleaseTime, _ = GetCurrentReleaseTime()
    }
    
    const consolePrefix = "CONSOLE_"
    
    func minioConfigToConsoleFeatures() {
    	os.Setenv("CONSOLE_PBKDF_SALT", globalDeploymentID())
    	os.Setenv("CONSOLE_PBKDF_PASSPHRASE", globalDeploymentID())
    	if globalMinioEndpoint != "" {
    		os.Setenv("CONSOLE_MINIO_SERVER", globalMinioEndpoint)
    	} else {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 35.8K bytes
    - Viewed (2)
  3. cmd/data-scanner.go

    // The returned cache will always be valid, but may not be updated from the existing.
    // Before each operation sleepDuration is called which can be used to temporarily halt the scanner.
    // If the supplied context is canceled the function will return at the first chance.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 11:18:58 GMT 2024
    - 47.6K bytes
    - Viewed (0)
Back to top