Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for FilePrefix (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

                        }
                        buf.append(strings[i]);
                    }
                    filePrefix = buf.toString();
                    extension = strings[strings.length - 1];
                } else {
                    filePrefix = name;
                    extension = "";
                }
            } else {
                filePrefix = "none";
                extension = "";
            }
            File inputFile = null;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                        buf.append(strings[i]);
                    }
                    filePrefix = buf.toString();
                    extention = strings[strings.length - 1];
                } else {
                    filePrefix = name;
                    extention = "";
                }
                filePrefix = filePrefix.replaceAll("\\p{Zs}", "_");
            } else {
                filePrefix = "none";
                extention = "";
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/cmd/nm/nm.go

    func usage() {
    	fmt.Fprint(os.Stderr, helpText)
    	os.Exit(2)
    }
    
    var (
    	sortOrder = flag.String("sort", "name", "")
    	printSize = flag.Bool("size", false, "")
    	printType = flag.Bool("type", false, "")
    
    	filePrefix = false
    )
    
    func init() {
    	flag.Var(nflag(0), "n", "") // alias for -sort address
    }
    
    type nflag int
    
    func (nflag) IsBoolFlag() bool {
    	return true
    }
    
    func (nflag) Set(value string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/runtime/debug/stack_test.go

    	} else {
    		// Since GOROOT is not set in the environment, its value (if any) must come
    		// from the path embedded in the binary.
    		fileGoroot = runtime.GOROOT()
    	}
    	filePrefix := ""
    	if fileGoroot != "" {
    		filePrefix = filepath.ToSlash(fileGoroot) + "/src/"
    	}
    
    	n := 0
    	frame := func(file, code string) {
    		t.Helper()
    
    		line := lines[n]
    		if !strings.Contains(line, code) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/config/schema/codegen/common.go

    			"PackageName":  "collections",
    			"FilePrefix":   "// +build !agent",
    			"CustomImport": `  "istio.io/istio/pkg/config/validation/envoyfilter"`,
    		}),
    		writeTemplate("pkg/config/schema/collections/collections.agent.gen.go", collectionsTemplate, map[string]any{
    			"Entries":      agentEntries,
    			"Packages":     inp.Packages,
    			"PackageName":  "collections",
    			"FilePrefix":   "// +build agent",
    			"CustomImport": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pkg/config/schema/codegen/templates/collections.go.tmpl

    {{- .FilePrefix}}
    // Code generated by pkg/config/schema/codegen/tools/collections.main.go. DO NOT EDIT.
    
    package {{.PackageName}}
    
    import (
    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/config/validation"
    {{ .CustomImport }}
      "reflect"
    {{- range .Packages}}
    	{{.ImportName}} "{{.PackageName}}"
    {{- end}}
    )
    
    var (
    {{ range .Entries }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top