Home
last modified time | relevance | path

Searched refs:PutColumn (Results 1 – 5 of 5) sorted by relevance

/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/aliyun/aliyun-tablestore-go-sdk/sample/
H A DSingleRowOperation.go91 updateRowChange.PutColumn("col2", int64(77))
92 updateRowChange.PutColumn("col4", "newcol3")
115 updateRowChange.PutColumn("col2", int64(50))
/dports/graphics/freeimage/FreeImage/Source/FreeImageToolkit/
H A DBSplineRotate.cpp66 static void PutColumn(double *Image, long Width, long x, double *Line, long Height);
226 PutColumn(double *Image, long Width, long x, double *Line, long Height) { in PutColumn() function
326 PutColumn(Image, Width, x, Line, Height); in SamplesToCoefficients()
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/aliyun/aliyun-tablestore-go-sdk/timeline/
H A Dstore.go96 change.PutColumn(key, value)
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/aliyun/aliyun-tablestore-go-sdk/tablestore/
H A Dapi_test.go661 updateRowChange.PutColumn("col2", int64(77))
662 updateRowChange.PutColumn("col3", "newcol3")
908 updateRowChange.PutColumn("col2", int64(77))
909 updateRowChange.PutColumn("col3", "newcol3")
1727 chg.PutColumn("colToUpdate", 3.14)
H A Dutil.go775 func (rowchange *UpdateRowChange) PutColumn(columnName string, value interface{}) { func