Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Dictionary (0.3 sec)

  1. src/main/resources/suggest_indices/suggest_analyzer.json

            "keywords_path": "${fess.dictionary.path}da/protwords.txt"
          },
          "danish_stemmer": {
            "type":       "stemmer",
            "language":   "danish"
          },
          "dutch_stop": {
            "type":       "stop",
            "stopwords":  "_dutch_"
          },
          "dutch_keywords": {
            "type":       "keyword_marker",
            "keywords_path": "${fess.dictionary.path}nl/protwords.txt"
          },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 23 05:09:51 UTC 2019
    - 57.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    			// ok
    		default:
    			continue
    		}
    		// Skip things with no type, unless it's a dictionary
    		gt := d.ldr.SymGoType(idx)
    		if gt == 0 {
    			if t == sym.SRODATA {
    				if d.ldr.IsDict(idx) {
    					// This is a dictionary, make sure that all types referenced by this dictionary are reachable
    					relocs := d.ldr.Relocs(idx)
    					for i := 0; i < relocs.Count(); i++ {
    						reloc := relocs.At(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite.go

    			if strings.HasPrefix(r.Sym.Name, "type:") {
    				// In case we're loading a type out of a dictionary, we need to record
    				// that the containing function might put that type in an interface.
    				// That information is currently recorded in relocations in the dictionary,
    				// but if we perform this load at compile time then the dictionary
    				// might be dead.
    				reflectdata.MarkTypeSymUsedInInterface(r.Sym, f.fe.Func().Linksym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY);
            if (StringUtil.isNotBlank(dictionaryPath) && !dictionaryPath.endsWith("/")) {
                dictionaryPath = dictionaryPath + "/";
            }
            source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)//
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	XTY_IMP = 0x40 // Imported symbol
    )
    
    // Storage-mapping class.
    const (
    	XMC_PR     = 0  // Program code
    	XMC_RO     = 1  // Read-only constant
    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    	XMC_XO     = 7  // Extended operation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    func (l *Loader) IsItab(i Sym) bool {
    	if l.IsExternal(i) {
    		return false
    	}
    	r, li := l.toLocal(i)
    	return r.Sym(li).IsItab()
    }
    
    // Returns whether this symbol is a dictionary symbol.
    func (l *Loader) IsDict(i Sym) bool {
    	if l.IsExternal(i) {
    		return false
    	}
    	r, li := l.toLocal(i)
    	return r.Sym(li).IsDict()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top