Searched refs:match (Results 1 – 3 of 3) sorted by relevance
104 Matcher match = null; in getProcLoadInLastMinute() local105 if ((match = matches(LOAD_OUTPUT_PATTERN, output.trim())) != null) { in getProcLoadInLastMinute()107 match.group("LASTMINUTELOAD"))); in getProcLoadInLastMinute()108 return Double.parseDouble(match.group("LASTMINUTELOAD")); in getProcLoadInLastMinute()
119 Matcher match; in getMetrics() local120 if ((match = matches(PID_PATTERN, process)) != null) { in getMetrics()121 String processId = match.group(PROCESS_ID); in getMetrics()184 Matcher match; in getCachedProcesses() local186 && (match = matches(CACHE_PROC_START_PATTERN, currLine)) == null) { in getCachedProcesses()
336 private void verifyMatches(String output, String match, String message, Object... args) { in verifyMatches() argument337 Verify.verify(output.matches(match), message, args); in verifyMatches()