- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for firstLine (0.15 seconds)
-
src/etc/header-definition.xml
<?xml version="1.0" encoding="UTF-8"?> <additionalHeaders> <javadoc_style> <firstLine>/*</firstLine> <beforeEachLine> * </beforeEachLine> <endLine> */</endLine> <!--skipLine></skipLine--> <firstLineDetectionPattern>(\s|\t)*/\*.*$</firstLineDetectionPattern> <lastLineDetectionPattern>.*\*/(\s|\t)*$</lastLineDetectionPattern> <allowBlankLines>false</allowBlankLines>
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sun Sep 15 12:48:40 GMT 2013 - 509 bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/GitInfo.java
} private static String readFirstLine(final Path path) throws IOException { String firstLine; try (Stream<String> lines = Files.lines(path, StandardCharsets.UTF_8)) { firstLine = lines.findFirst().orElseThrow(() -> new IOException("file [" + path + "] is empty")); } return firstLine; } /** Find the reponame. */ public String urlFromOrigin() {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 7.8K bytes - Click Count (0) -
internal/event/target/redis.go
if xnet.IsConnRefusedErr(pingErr) { return store.ErrNotConnected } return pingErr } if !target.firstPing { if err := target.args.validateFormat(conn); err != nil { if xnet.IsConnRefusedErr(err) { return store.ErrNotConnected } return err } target.firstPing = true } eventData, eErr := target.store.Get(key) if eErr != nil {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Mar 30 00:56:02 GMT 2025 - 9.1K bytes - Click Count (0) -
internal/disk/stat_linux.go
"strconv" "strings" "syscall" "github.com/prometheus/procfs/blockdevice" "golang.org/x/sys/unix" ) // GetInfo returns total and free bytes available in a directory, e.g. `/`. func GetInfo(path string, firstTime bool) (info Info, err error) { s := syscall.Statfs_t{} err = syscall.Statfs(path, &s) if err != nil { return Info{}, err } reservedBlocks := s.Bfree - s.Bavail info = Info{
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 4.8K bytes - Click Count (0)