Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BatchJobSnowball (0.29 sec)

  1. cmd/batch-job-common-types.go

    }
    
    var _ yaml.Unmarshaler = &BatchJobSnowball{}
    
    // UnmarshalYAML - BatchJobSnowball extends unmarshal to extract line, column information
    func (b *BatchJobSnowball) UnmarshalYAML(val *yaml.Node) error {
    	type snowball BatchJobSnowball
    	var tmp snowball
    	err := val.Decode(&tmp)
    	if err != nil {
    		return err
    	}
    
    	*b = BatchJobSnowball(tmp)
    	b.line, b.col = val.Line, val.Column
    	return nil
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top