Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 661 for shtml (0.04 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

            assertContentType("text/plain", null, "hoge.txt");
            assertContentType("text/html", "html/test1.html", "hoge.html");
            assertContentType("text/html", "html/test1.html", "hoge.htm");
            assertContentType("text/html", "html/test1.shtml", "hoge.shtml");
    
            assertContentType("application/msword", "test/text1.txt", "hoge.doc");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/html.go

    	}
    
    	s += fmt.Sprintf("%s %s = %s", v.HTML(), linenumber, v.Op.String())
    
    	s += " <" + html.EscapeString(v.Type.String()) + ">"
    	s += html.EscapeString(v.auxString())
    	for _, a := range v.Args {
    		s += fmt.Sprintf(" %s", a.HTML())
    	}
    	r := v.Block.Func.RegAlloc
    	if int(v.ID) < len(r) && r[v.ID] != nil {
    		s += " : " + html.EscapeString(r[v.ID].String())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/dependency_management_basics.html">6. Dependency Management Basics</a></li>
                            <li><a href="../userguide/task_basics.html">7. Task Basics</a></li>
                            <li><a href="../userguide/plugin_basics.html">8. Plugins Basics</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/nexus_dirlisting.html

        Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
        of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
        Eclipse Foundation. All other trademarks are the property of their respective owners.
    
    -->
    <html>
      <head>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/html.go

    					return true
    				}
    			}
    		}
    	}
    	return false
    }
    
    func parseHTMLTag(p *parseState, s string, i int) (Inline, int, bool) {
    	// “An HTML tag consists of an open tag, a closing tag, an HTML comment,
    	// a processing instruction, a declaration, or a CDATA section.”
    	if i+3 <= len(s) && s[i] == '<' {
    		switch s[i+1] {
    		default:
    			return parseHTMLOpenTag(p, s, i)
    		case '/':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. doc/asm.html

    The document is not comprehensive.
    </p>
    
    <p>
    The assembler is based on the input style of the Plan 9 assemblers, which is documented in detail
    <a href="https://9p.io/sys/doc/asm.html">elsewhere</a>.
    If you plan to write assembly language, you should read that document although much of it is Plan 9-specific.
    The current document provides a summary of the syntax and the differences with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  7. doc/go_mem.html

    cui fliter <******@****.***> 1709196623 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/templates/productpage.html

    Peter Jausovec <******@****.***> 1717444445 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

            }
    
            return resultData;
        }
    
        protected boolean isHtml(final ResponseData responseData) {
            final String mimeType = responseData.getMimeType();
            if ("text/html".equals(mimeType) || "application/xhtml+xml".equals(mimeType)) {
                return true;
            }
            return false;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/net/http/readrequest_test.go

    	// Baseline test; All Request fields included for template use
    	{
    		"GET http://www.techcrunch.com/ HTTP/1.1\r\n" +
    			"Host: www.techcrunch.com\r\n" +
    			"User-Agent: Fake\r\n" +
    			"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n" +
    			"Accept-Language: en-us,en;q=0.5\r\n" +
    			"Accept-Encoding: gzip,deflate\r\n" +
    			"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7\r\n" +
    			"Keep-Alive: 300\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top