MCPcopy Index your code
hub / github.com/tensorflow/tensorboard / getURIStorageName

Function getURIStorageName

tensorboard/components/tf_storage/storage.ts:260–264  ·  view source on GitHub ↗

* Get a unique storage name for a (Polymer component, propertyName) tuple. * * DISAMBIGUATOR must be set on the component, if other components use the * same propertyName.

(component: {}, propertyName: string)

Source from the content-addressed store, hash-verified

258 * same propertyName.
259 */
260function getURIStorageName(component: {}, propertyName: string): string {
261 const d = component[DISAMBIGUATOR];
262 const components = d == null ? [propertyName] : [d, propertyName];
263 return components.join('.');
264}

Callers 2

getInitializerFunction · 0.85
getObserverFunction · 0.85

Calls 1

joinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…