Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 646 for shtml (0.65 sec)

  1. src/net/textproto/reader_test.go

    	}
    }
    
    var clientHeaders = strings.Replace(`Host: golang.org
    Connection: keep-alive
    Cache-Control: max-age=0
    Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.63 Safari/534.3
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8,fr-CH;q=0.6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        HtmlNext path_Error_NotFoundJsp = new HtmlNext("/error/notFound.jsp");
    
        /** The path of the HTML: /error/redirect.jsp */
        HtmlNext path_Error_RedirectJsp = new HtmlNext("/error/redirect.jsp");
    
        /** The path of the HTML: /error/system.jsp */
        HtmlNext path_Error_SystemJsp = new HtmlNext("/error/system.jsp");
    
        /** The path of the HTML: /footer.jsp */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/xctest_plugin.adoc

    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles Swift source files using the selected compiler.
    
    `linkTest__Variant__` (e.g. `linkTest`) - link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkMachOBundle.html[LinkMachOBundle] (on macOS) or link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html[LinkExecutable] (on Linux)::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            assertEquals("http://hoge/index.html", htmlTransformer.normalizeUrl(url));
    
            url = "http://hoge/index.html;jsessionid=hoge?a=1";
            assertEquals("http://hoge/index.html?a=1", htmlTransformer.normalizeUrl(url));
    
            url = "http://hoge/index.html;jsessionid=hoge.fuga?a=1";
            assertEquals("http://hoge/index.html?a=1", htmlTransformer.normalizeUrl(url));
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

            });
            return asHtml(path_AdminRole_AdminRoleJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            copyBeanToBean(form, rolePager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
            return asHtml(path_AdminRole_AdminRoleJsp).renderWith(data -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

      * `beforeMerged { link:{javadocPath}/org/gradle/plugins/ide/eclipse/model/Classpath.html[Classpath] arg -> ... }`
      * `whenMerged { link:{javadocPath}/org/gradle/plugins/ide/eclipse/model/Classpath.html[Classpath] arg -> ... }`
      * `withXml { link:{javadocPath}/org/gradle/api/XmlProvider.html[XmlProvider] arg -> ... }`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    A link:{javadocPath}/org/gradle/api/tasks/TaskProvider.html[TaskProvider] can be obtained in several ways including the link:{javadocPath}/org/gradle/api/tasks/TaskContainer.html#register-java.lang.String-[TaskContainer.register(java.lang.String)] and the link:{javadocPath}/org/gradle/api/tasks/TaskCollection.html#named-java.lang.String-[TaskCollection.named(java.lang.String)] method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    The link:{groovyDslPath}/org.gradle.testing.jacoco.tasks.JacocoReport.html[JacocoReport] task can be used to generate code coverage reports in different formats. It implements the standard Gradle type link:{groovyDslPath}/org.gradle.api.reporting.Reporting.html[Reporting] and exposes a report container of type link:{javadocPath}/org/gradle/testing/jacoco/tasks/JacocoReportsContainer.html[JacocoReportsContainer].
    
    .Configuring test task
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

            hasReport(':buildDashboard', 'html')
            unavailableReports.size() == 2
            hasUnavailableReport(':test', 'html')
            hasUnavailableReport(':test', 'junitXml')
    
            when:
            run('test')
            executedAndNotSkipped(':buildDashboard')
    
            then:
            reports.size() == 3
            hasReport(':buildDashboard', 'html')
            hasReport(':test', 'html')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    link:{javadocPath}/org/gradle/api/file/RegularFileProperty.html[RegularFileProperty] and link:{javadocPath}/org/gradle/api/file/DirectoryProperty.html[DirectoryProperty]. link:{javadocPath}/org/gradle/api/model/ObjectFactory.html[ObjectFactory] has methods to create these: link:{javadocPath}/org/gradle/api/model/ObjectFactory.html#fileProperty--[ObjectFactory.fileProperty()] and link:{javadocPath}/org/gradle/api/model/ObjectFactory.html#directoryProperty--[ObjectFactory.directoryProperty()].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top