- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for NewJSONWith (0.04 seconds)
-
cmd/peer-rest-server.go
info := getLocalServerProperty(globalEndpoints, &r, metrics) return madminServerProperties.NewJSONWith(&info), nil } // GetCPUsHandler - returns CPU info. func (s *peerRESTServer) GetCPUsHandler(_ *grid.MSS) (*grid.JSON[madmin.CPUs], *grid.RemoteErr) { info := madmin.GetCPUs(context.Background(), globalLocalNodeName) return madminCPUs.NewJSONWith(&info), nil } // GetNetInfoHandler - returns network information.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 53.6K bytes - Click Count (0) -
internal/grid/types.go
} // NewJSON returns a new JSONPool. // No initial value is set. func (p *JSONPool[T]) NewJSON() *JSON[T] { var j JSON[T] j.p = p return &j } // NewJSONWith returns a new JSON with the provided value. func (p *JSONPool[T]) NewJSONWith(val *T) *JSON[T] { var j JSON[T] j.p = p j.val = val return &j } // Value returns the underlying value. // If not set yet, a new value is created.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 15.5K bytes - Click Count (0)