Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 118 for teille (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

                .toSet()
        }
    
        /**
         * Parses the release notes file and returns the triple: (linesBeforeContributors, contributorLines, linesAfterContributors)
         */
        protected
        fun parseReleaseNotes(): Triple<List<String>, List<String>, List<String>> {
            val releaseNotesLines: List<String> = releaseNotes.asFile.get().readLines()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jun 24 07:54:08 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  2. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

            Provide a brief summary of the issue in the title above
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us how it should work
        validations:
          required: true
      - type: textarea
        id: current-behavior
        attributes:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Nov 27 15:48:22 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  3. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            Provide a brief summary of the issue in the title above
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Sep 09 14:48:49 GMT 2024
    - 3K bytes
    - Click Count (1)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionPropertiesSummaryRenderer.java

            parent.appendChild(section);
    
            Element title = document.createElement("title");
            section.appendChild(title);
            title.appendChild(document.createTextNode("Properties added by the "));
            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(extension.getPluginId()));
            title.appendChild(document.createTextNode(" plugin"));
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Click Count (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/MethodsRenderer.java

            Element summarySection = document.createElement("section");
            parent.appendChild(summarySection);
    
            Element title = document.createElement("title");
            summarySection.appendChild(title);
            title.appendChild(document.createTextNode("Methods"));
    
            Collection<MethodDoc> classMethods = classDoc.getClassMethods();
    
            if (!classMethods.isEmpty()) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/PropertiesRenderer.java

            Element summarySection = document.createElement("section");
            parent.appendChild(summarySection);
    
            Element title = document.createElement("title");
            summarySection.appendChild(title);
            title.appendChild(document.createTextNode("Properties"));
    
            Collection<PropertyDoc> classProperties = classDoc.getClassProperties();
            if (!classProperties.isEmpty()) {
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlocksRenderer.java

            Element summarySection = document.createElement("section");
            parent.appendChild(summarySection);
    
            Element title = document.createElement("title");
            summarySection.appendChild(title);
            title.appendChild(document.createTextNode("Script blocks"));
    
            Collection<BlockDoc> classBlocks = classDoc.getClassBlocks();
            if (!classBlocks.isEmpty()) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4K bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BlockDetailRenderer.java

            section.setAttribute("role", "detail");
    
            Element title = document.createElement("title");
            section.appendChild(title);
            Element literal = document.createElement("literal");
            title.appendChild(literal);
            literal.appendChild(document.createTextNode(blockDoc.getName()));
            title.appendChild(document.createTextNode(" { }"));
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.7K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java

            html.append("<head>\n");
            html.append("<meta charset=\"UTF-8\">\n");
            html.append("<title>").append(title).append("</title>\n");
    
            for (final Map.Entry<String, Object> entry : source.entrySet()) {
                final String field = entry.getKey();
                if ("title".equals(field) || "content".equals(field) || "lang".equals(field)) {
                    continue;
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 07 10:31:36 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  10. src/main/webapp/js/login.js

      $("#confirmToDelete").on("show.bs.modal", function(event) {
        var button = $(event.relatedTarget);
        var docId = button.data("docid");
        var title = button.data("title");
        var url = button.data("url");
    
        var $modal = $(this);
        $modal.find(".modal-body #delete-doc-title").text(title);
        $modal.find(".modal-body #delete-doc-url").text(url);
        $modal.find(".modal-footer input#docId").val(docId);
      });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:12:50 GMT 2025
    - 1.3K bytes
    - Click Count (0)
Back to Top