Home
last modified time | relevance | path

Searched refs:_detectors (Results 1 – 2 of 2) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/format/
DDataFormatDetector.java27 protected final JsonFactory[] _detectors; field in DataFormatDetector
68 _detectors = detectors; in DataFormatDetector()
83 return new DataFormatDetector(_detectors, optMatch, _minimalMatch, _maxInputLookahead); in withOptimalMatch()
94 return new DataFormatDetector(_detectors, _optimalMatch, minMatch, _maxInputLookahead); in withMinimalMatch()
105 return new DataFormatDetector(_detectors, _optimalMatch, _minimalMatch, lookaheadBytes); in withMaxInputLookahead()
159 final int len = _detectors.length; in toString()
161 sb.append(_detectors[0].getFormatName()); in toString()
164 sb.append(_detectors[i].getFormatName()); in toString()
180 for (JsonFactory f : _detectors) { in _findFormat()
/external/tensorflow/tensorflow/python/eager/
Ddef_function.py131 self._detectors = weakref.WeakKeyDictionary() # GUARDED_BY(self._lock)
135 if key not in self._detectors:
136 self._detectors[key] = _FrequentTracingDetector()
137 return self._detectors[key]