Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BatchJobPrefix (0.06 sec)

  1. cmd/batch-handlers.go

    	}
    	return lookup
    }
    
    // BatchJobPrefix - to support prefix field yaml unmarshalling with string or slice of strings
    type BatchJobPrefix []string
    
    var _ yaml.Unmarshaler = &BatchJobPrefix{}
    
    // UnmarshalYAML - to support prefix field yaml unmarshalling with string or slice of strings
    func (b *BatchJobPrefix) UnmarshalYAML(value *yaml.Node) error {
    	// try slice first
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 18 15:32:09 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  2. cmd/batch-expire.go

    type BatchJobExpire struct {
    	line, col       int
    	APIVersion      string                 `yaml:"apiVersion" json:"apiVersion"`
    	Bucket          string                 `yaml:"bucket" json:"bucket"`
    	Prefix          BatchJobPrefix         `yaml:"prefix" json:"prefix"`
    	NotificationCfg BatchJobNotification   `yaml:"notify" json:"notify"`
    	Retry           BatchJobRetry          `yaml:"retry" json:"retry"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 18 17:59:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top