Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,634 for shtml (0.1 sec)

  1. 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)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/CompositeTestResultsTest.groovy

            where:
            fromUrl                  | relativeUrl
            "test/other.html"        | "other.html"
            "other/other.html"       | "../other/other.html"
            "index.html"             | "../index.html"
            "test/subdir/other.html" | "subdir/other.html"
        }
    
        private TestResult test() {
            return new TestResult('test', 45, new ClassTestResults(1, 'test', null))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. maven-settings/src/site/apt/index.apt

         for Merger and v4 Reader and Writers for the Xpp3 XML parser,
    
       * A {{{./settings.html}Descriptor Reference}}
    
       * An {{{https://maven.apache.org/xsd/settings-1.2.0.xsd}XSD}}
    
    * See Also User Documentation
    
      * {{{https://maven.apache.org/settings.html} Settings Reference}},
    
      * {{{https://maven.apache.org/guides/mini/guide-mirror-settings.html} Mirror Settings}},
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/FileTransformerTest.java

            assertEquals(resultFile, file);
            FileUtil.writeBytes(file.getAbsolutePath(), "abc".getBytes());
    
            path = "hoge.html/hoge3.html";
            file = fileTransformer.createFile(path);
            resultFile = new File(fileTransformer.baseDir, "hoge.html_2" + File.separator + "hoge3.html");
            assertEquals(resultFile, file);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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