Searched refs:blobFile (Results 1 – 2 of 2) sorted by relevance
175 Blob blobFile = vtsInfraLogBucket.get(filePathInfo.toString()); in downloadHandler() local177 if (blobFile.exists()) { in downloadHandler()179 response.setContentLength(blobFile.getSize().intValue()); in downloadHandler()184 response.getOutputStream().write(blobFile.getContent()); in downloadHandler()214 Blob blobFile = (Blob) this.syncCache.get(path.toString()); in defaultHandler() local215 if (blobFile == null) { in defaultHandler()216 blobFile = vtsReportBucket.get(path); in defaultHandler()217 this.syncCache.put(path.toString(), blobFile); in defaultHandler() local221 InputStream blobInputStream = new ByteArrayInputStream(blobFile.getContent()); in defaultHandler()251 response.setContentLength(blobFile.getSize().intValue()); in defaultHandler()[all …]
214 Blob blobFile = (Blob) this.syncCache.get(filePath); in doPost() local215 if (Objects.isNull(blobFile)) { in doPost()217 blobFile = vtsReportBucket.get(filePath); in doPost()218 this.syncCache.put(filePath, blobFile); in doPost()221 if (blobFile.exists()) { in doPost()226 blobFile.getContent()); in doPost()