Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,381 for etext (0.01 sec)

  1. fess-crawler-lasta/src/test/resources/test/text 3.txt

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: 2025-05-25 03:50
    - Last Modified: 2015-10-11 02:16
    - 6 bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/test/text 3.txt

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: 2025-05-25 03:50
    - Last Modified: 2015-10-11 02:16
    - 6 bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            "  <p>text</p>   "                                 | "<p>text</p>"
            "<p>text</p>   <p>text</p>"                        | "<p>text</p><p>text</p>"
            "<p>text</p>   <h2>text</h2> <table/>"             | "<p>text</p><h2>text</h2><table></table>"
            "  <table>  <tr>  <td>text</td> </tr>\r\n</table>" | "<table><tr><td>text</td></tr></table>"
        }
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2020-12-09 08:14
    - 6.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProviderTest.java

            final FessConfig fessConfig = createFessConfigWithResponseHeaders("*=X-Def:def\ntext/html=X-Html:htmlval");
            FessActionAdjustmentProvider provider = new FessActionAdjustmentProvider(fessConfig);
            final Map<String, String> headerMap = new HashMap<>();
            provider.adjustActionResponseHeaders("text/html", (k, v) -> headerMap.put(k, v));
            assertEquals(2, headerMap.size());
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-05-06 09:19
    - 3.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/mime.map

    image/x-xwindowdump            xwd              #
    text/css                       css              # Cascading Style Sheet
    text/html                      html htm         # HTML Document
    text/plain                     txt ini log in cfg m4 sh     # Plain Text File
    text/richtext                  rtx              # Rich Text File
    text/tab-separated-values      tsv              #
    text/x-setext                  etx              #
    Registered: 2025-05-25 00:10
    - Last Modified: 2019-03-22 20:39
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/endtoend_test.go

    		delete(hexByLine, p.Line())
    		if text == nil {
    			t.Errorf("%s: instruction outside TEXT", p)
    		}
    		size := int64(len(text.P)) - p.Pc
    		if p.Link != nil {
    			size = p.Link.Pc - p.Pc
    		} else if p.Isize != 0 {
    			size = int64(p.Isize)
    		}
    		var code []byte
    		if p.Pc < int64(len(text.P)) {
    			code = text.P[p.Pc:]
    			if size < int64(len(code)) {
    				code = code[:size]
    			}
    		}
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-03-26 01:02
    - 11.9K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"text/x-cobol",
    				"text/x-coldfusion",
    				"text/x-common-lisp",
    				"text/x-diff",
    				"text/x-eiffel",
    				"text/x-emacs-lisp",
    				"text/x-erlang",
    				"text/x-expect",
    				"text/x-forth",
    				"text/x-fortran",
    				"text/x-go",
    				"text/x-groovy",
    				"text/x-haskell",
    				"text/x-idl",
    				"text/x-ini",
    				"text/x-java-source",
    				"text/x-jsp",
    Registered: 2025-05-25 03:50
    - Last Modified: 2020-08-01 21:40
    - 49K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    	}
    	return true
    }
    
    // asmText assembles a TEXT pseudo-op.
    // TEXT runtimeĀ·sigtramp(SB),4,$0-0
    func (p *Parser) asmText(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for TEXT")
    		return
    	}
    
    	// Labels are function scoped. Patch existing labels and
    	// create a new label space for this TEXT.
    	p.patch()
    	p.labels = make(map[string]*obj.Prog)
    
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-05-16 05:00
    - 26.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_aws/fess/doc.json

                "analyzer": "sorani_analyzer"
              }
            }
          },
          {
            "lang_cs": {
              "match": "*_cs",
              "mapping": {
                "type": "text",
                "analyzer": "czech_analyzer"
              }
            }
          },
          {
            "lang_da": {
              "match": "*_da",
              "mapping": {
                "type": "text",
                "analyzer": "danish_analyzer"
    Registered: 2025-05-26 08:04
    - Last Modified: 2023-08-15 11:50
    - 11.7K bytes
    - Viewed (0)
  10. internal/s3select/sql/stringfuncs.go

    		return strings.HasSuffix(text, string(s)), nil
    	}
    	return string(s) == text, nil
    }
    
    // matcher - Finds `pat` in `text`, and returns the part remainder of
    // `text`, after the match. If leadingPercent is false, `pat` must be
    // the prefix of `text`, otherwise it must be a substring.
    func matcher(text, pat string, leadingPercent bool) (res string, match bool) {
    	if !leadingPercent {
    		res = strings.TrimPrefix(text, pat)
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 4.2K bytes
    - Viewed (0)
Back to top