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

Method notDots

core/src/main/java/io/questdb/std/Files.java:415–424  ·  view source on GitHub ↗
(Utf8Sequence value)

Source from the content-addressed store, hash-verified

413 public static native long noop();
414
415 public static boolean notDots(Utf8Sequence value) {
416 final int size = value.size();
417 if (size > 2) {
418 return true;
419 }
420 if (value.byteAt(0) != '.') {
421 return true;
422 }
423 return size == 2 && value.byteAt(1) != '.';
424 }
425
426 public static boolean notDots(long pUtf8NameZ) {
427 final byte b0 = Unsafe.getByte(pUtf8NameZ);

Callers 15

findPartitionSizesMethod · 0.95
filesMethod · 0.95
reportCrashFilesMethod · 0.95
removeExcessiveLogsMethod · 0.95
removeExpiredLogsMethod · 0.95
globFilesInternalMethod · 0.95
recursiveGlobFilesMethod · 0.95
hasNextMethod · 0.95
runRecursiveMethod · 0.95

Calls 3

getByteMethod · 0.95
sizeMethod · 0.65
byteAtMethod · 0.65

Tested by 4

findPartitionSizesMethod · 0.76
filesMethod · 0.76