Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,532 for shtml (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/legacy/rule_source.adoc

    A plugin can define rules by extending link:{javadocPath}/org/gradle/model/RuleSource.html[RuleSource] and adding methods that define the rules. The plugin class can either extend link:{javadocPath}/org/gradle/model/RuleSource.html[RuleSource] directly or can implement link:{javadocPath}/org/gradle/api/Plugin.html[Plugin] and include a nested link:{javadocPath}/org/gradle/model/RuleSource.html[RuleSource] subclass.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/html/template/context.go

    import (
    	"fmt"
    	"text/template/parse"
    )
    
    // context describes the state an HTML parser must be in when it reaches the
    // portion of HTML produced by evaluating a particular template node.
    //
    // The zero value of type context is the start context for a template that
    // produces an HTML fragment as defined at
    // https://www.w3.org/TR/html5/syntax.html#the-end
    // where the context element is null.
    type context struct {
    	state   state
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/ajax/js/test.js

    $(document).ready(function(){
      openPage("home.html");
      setEventHandlers();
    });
    
    function setEventHandlers(){
      $('#info').click(function(){ openPage("info.html") } );
      $('#home').click(function(){ openPage("home.html") } );
    }
    
    function openPage(page){
      $('#content').load(page);
      location.hash = page;
    }
    
    function addFooter(msg){
      $('#footer').html($('#footer').html() + "<p>FOOTER: " + msg + "</p>");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 410 bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/UrlConvertHelperTest.java

            String url;
    
            url = "http://hoge.com/http/fuga.html";
            assertEquals("http://hoge.com/http/fuga.html", urlConvertHelper.convert(url));
    
            url = "tp://hoge.com/http/fuga.html";
            assertEquals("tp://hoge.com/http/fuga.html", urlConvertHelper.convert(url));
    
            urlConvertHelper.add("^tp:", "http:");
    
            url = "http://hoge.com/http/fuga.html";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

                buf.append("<url>").append('\n');
                buf.append("<loc>http://localhost:7070/index.html</loc>").append('\n');
                buf.append("<loc>http://localhost:7070/file").append(count).append("-1.html").append("</loc>").append('\n');
                buf.append("</url>").append('\n');
                buf.append("</urlset>").append('\n');
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    This is an link:sample_java_modules_multi_project.html[extension of this sample] that adds blackbox integration tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. docs_src/websockets/tutorial001.py

    from fastapi import FastAPI, WebSocket
    from fastapi.responses import HTMLResponse
    
    app = FastAPI()
    
    html = """
    <!DOCTYPE html>
    <html>
        <head>
            <title>Chat</title>
        </head>
        <body>
            <h1>WebSocket Chat</h1>
            <form action="" onsubmit="sendMessage(event)">
                <input type="text" id="messageText" autocomplete="off"/>
                <button>Send</button>
            </form>
            <ul id='messages'>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_websockets/test_tutorial003_py39.py

    
    @pytest.fixture(name="html")
    def get_html():
        from docs_src.websockets.tutorial003_py39 import html
    
        return html
    
    
    @pytest.fixture(name="client")
    def get_client(app: FastAPI):
        client = TestClient(app)
    
        return client
    
    
    @needs_py39
    def test_get(client: TestClient, html: str):
        response = client.get("/")
        assert response.text == html
    
    
    @needs_py39
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. maven-embedder/src/site/apt/logging.apt

     / {{{https://codehaus-plexus.github.io/plexus-containers/plexus-container-default/apidocs/org/codehaus/plexus/logging/Logger.html}Logger}}.
    
     Starting with Maven 3.1.0:
    
      *  Maven supports SLF4J API logging API too, ie {{{http://slf4j.org/apidocs/org/slf4j/LoggerFactory.html}LoggerFactory}} /
         {{{http://slf4j.org/apidocs/org/slf4j/Logger.html}Logger}},
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/nofollow_posix.go

    //   - android: see linux
    //   - darwin: https://github.com/apple/darwin-xnu/blob/main/bsd/man/man2/open.2
    //   - hurd: who knows if it works at all (https://www.gnu.org/software/hurd/open_issues/open_symlink.html)
    //   - illumos: https://illumos.org/man/2/open
    //   - ios: see darwin
    //   - linux: https://man7.org/linux/man-pages/man2/openat.2.html
    //   - openbsd: https://man.openbsd.org/open.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 933 bytes
    - Viewed (0)
Back to top