MCPcopy Index your code
hub / github.com/questdb/questdb / getResourcePath

Method getResourcePath

core/src/main/java/io/questdb/std/Files.java:273–280  ·  view source on GitHub ↗
(@Nullable URL url)

Source from the content-addressed store, hash-verified

271 }
272
273 public @NotNull
274 static String getResourcePath(@Nullable URL url) {
275 assert url != null;
276 String file = url.getFile();
277 assert file != null;
278 assert !file.isEmpty();
279 return file;
280 }
281
282 public synchronized static long getStdOutFdInternal() {
283 int stdoutFd = getStdOutFd();

Calls 1

isEmptyMethod · 0.65