Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for setLengths (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

                            Queue<BuildOperationRecord> children = stack.element();
                            BuildOperationRecord record = children.remove();
    
                            stringBuilder.setLength(0);
    
                            int indents = stack.size() - 1;
    
                            for (int i = 0; i < indents; ++i) {
                                stringBuilder.append("  ");
                            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
            return reportFile;
        }
    
        private void generateContent() {
            contents.setLength(0);
            contents.append("<!DOCTYPE html>\n" +
                "<html>\n" +
                "    <head>\n" +
                "        <title>Dependency verification report</title>\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            public String toString() {
                return "{buffer remaining: '" + value.substring(pos, pos + Math.min(value.length() - pos, 20)) + "'}";
            }
    
            void reset() {
                value.setLength(0);
                pos = 0;
            }
    
            /**
             * Returns text from the specified location to the end of the buffer.
             */
            String substring(int pos) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. doc/godebug.md

    because it documents the full list of known GODEBUG settings,
    which are tied to a specific release.
    -->
    
    ## Introduction {#intro}
    
    Go's emphasis on backwards compatibility is one of its key strengths.
    There are, however, times when we cannot maintain complete compatibility.
    If code depends on buggy (including insecure) behavior,
    then fixing the bug will break that code.
    New features can also have similar impacts:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            try {
                response.setContentType("application/x-ndjson; charset=UTF-8");
                final long count = searchHelper.scrollSearch(params, doc -> {
                    buf.setLength(0);
                    buf.append('{');
                    boolean first2 = true;
                    for (final Map.Entry<String, Object> entry : doc.entrySet()) {
                        final String name = entry.getKey();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <alias type="text/x-tex"/>
        <magic priority="50">
          <match value="\\input" type="string" offset="0"/>
          <match value="\\section" type="string" offset="0"/>
          <match value="\\setlength" type="string" offset="0"/>
          <match value="\\documentstyle" type="string" offset="0"/>
          <match value="\\chapter" type="string" offset="0"/>
          <match value="\\documentclass" type="string" offset="0"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top