Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unsem (0.17 sec)

  1. cmd/common-main.go

    			EndSessionEndpoint:      cfg.DiscoveryDoc.EndSessionEndpoint,
    			RoleArn:                 cfg.GetRoleArn(),
    		}
    	}
    	return m
    }
    
    func initConsoleServer() (*consoleapi.Server, error) {
    	// unset all console_ environment variables.
    	for _, cenv := range env.List(consolePrefix) {
    		os.Unsetenv(cenv)
    	}
    
    	// enable all console environment variables
    	minioConfigToConsoleFeatures()
    
    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)
  2. cmd/metacache-set.go

    type listPathOptions struct {
    	// ID of the listing.
    	// This will be used to persist the list.
    	ID string
    
    	// Bucket of the listing.
    	Bucket string
    
    	// Directory inside the bucket.
    	// When unset listPath will set this based on Prefix
    	BaseDir string
    
    	// Scan/return only content with prefix.
    	Prefix string
    
    	// FilterPrefix will return only results with this prefix when scanning.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 17:59:08 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  3. cmd/handler-api.go

    	defer t.mu.RUnlock()
    
    	return t.syncEvents
    }
    
    func (t *apiConfig) getObjectMaxVersions() int64 {
    	t.mu.RLock()
    	defer t.mu.RUnlock()
    
    	if t.objectMaxVersions <= 0 {
    		// defaults to 'IntMax' when unset.
    		return math.MaxInt64
    	}
    
    	return t.objectMaxVersions
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top