Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setHeaderLine (0.06 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ConcatFilesTask.java

        public void setFiles(FileTree files) {
            this.files = files;
        }
    
        @InputFiles
        public FileTree getFiles() {
            return files;
        }
    
        public void setHeaderLine(String headerLine) {
            this.headerLine = headerLine;
        }
    
        @Input
        @Optional
        public String getHeaderLine() {
            return headerLine;
        }
    
        public void setTarget(File target) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  2. docs/debugging/xattr/main.go

    	table.SetHeaderAlignment(tablewriter.ALIGN_LEFT)
    	table.SetAlignment(tablewriter.ALIGN_LEFT)
    	table.SetCenterSeparator("")
    	table.SetColumnSeparator("")
    	table.SetRowSeparator("")
    	table.SetHeaderLine(false)
    	// table.EnableBorder(false)
    	table.SetTablePadding("\t") // pad with tabs
    	table.SetNoWhiteSpace(true)
    
    	if set {
    		if err := setxattr(path, name, value); err != nil {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Dec 29 23:52:41 GMT 2023
    - 3.2K bytes
    - Click Count (0)
Back to Top