Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 81 for highlight (0.18 sec)

  1. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    .literalblock pre,
    .listingblock pre:not(.highlight),
    .listingblock pre[class="highlight"],
    .listingblock pre[class^="highlight "],
    .listingblock pre.CodeRay,
    .listingblock pre.prettyprint {
    	background: var(--code-color);
    }
    
    .sidebarblock .literalblock pre,
    .sidebarblock .listingblock pre:not(.highlight),
    .sidebarblock .listingblock pre[class="highlight"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    `<pre>` is the default HTML tag for preformatted text.
    All code blocks and multi-line snippets should be wrapped in `<pre>{@code ...... }</pre>` at minimum.
    
    Code blocks can be optionally formatted and highlighted using [`highlight.js`](https://highlightjs.org/) with the `<code>` tag.
    For this, all code blocks and multi-line snippets should be wrapped in `<code class="language-*****"></code>`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. docs/en/mkdocs.yml

        scheme: slate
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb-outline
          name: Switch to light mode
      features:
      - search.suggest
      - search.highlight
      - content.tabs.link
      - navigation.indexes
      - content.tooltips
      - navigation.path
      - content.code.annotate
      - content.code.copy
      - content.code.select
      - navigation.tabs
      icon:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. scripts/docs.py

        build-all.
    
        Takes an optional LANG argument with the name of the language to serve, by default
        en.
        """
        # Enable line numbers during local development to make it easier to highlight
        os.environ["LINENUMS"] = "true"
        if lang is None:
            lang = "en"
        lang_path: Path = docs_path / lang
        os.chdir(lang_path)
        mkdocs.commands.serve.serve(dev_addr="127.0.0.1:8008")
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String TEXT_FRAGMENTS = "text_fragments";
    
        public static final String TEXT_FRAGMENT_TYPE_QUERY = "query";
    
        public static final String TEXT_FRAGMENT_TYPE_HIGHLIGHT = "highlight";
    
        public static final String CRAWLER_STATS_KEY = "crawler.stats.key";
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/all.css

        padding: 0 .5em .5em .5em
    }
    
    pre code.command-output div:only-of-type {
        padding: .5em
    }
    
    @media print {
        pre {
            max-height: unset
        }
    }
    
    div.highlight {
        position: relative
    }
    
    button.copy {
        font-size: .8em;
        padding: 0 .5em;
        border-radius: .3em;
        background-color: #68AAF7;
        cursor: pointer;
        color: #fff;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        const src = stacks.Sources[box.src];
        div.title = details(box) + ' │ ' + src.FullName + (src.Inlined ? "\n(inlined)" : "");
        detailBox.innerText = summary(box.sumpos, box.sumneg);
        // Highlight all boxes that have the same source as box.
        toggleClass(box.src, 'hilite2', true);
      }
    
      function handleLeave(box) {
        if (actionMenuOn) return;
        detailBox.innerText = '';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. pkg/test/kube/dump.go

    					path, c.Name(), pod.Namespace, pod.Name, container.Name, err)
    			}
    			if filename == "proxy-config.json" {
    				// Add extra logs if we have anything warming. FAIL syntax is import to make prow highlight
    				// it. Note: this doesn't make the test fail, just adds logging; if we hit this code the test
    				// already failed.
    				// We add backoff because we may see transient warming errors during cleanup of resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=6.9.0"
          }
        },
        "node_modules/@babel/highlight": {
          "version": "7.18.6",
          "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
          "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
          "dev": true,
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.lastaflute.web.util.LaServletContextUtil;
    import org.opensearch.core.common.text.Text;
    import org.opensearch.search.fetch.subphase.highlight.HighlightField;
    
    import com.github.jknack.handlebars.Context;
    import com.github.jknack.handlebars.Handlebars;
    import com.github.jknack.handlebars.Template;
    import com.github.jknack.handlebars.io.FileTemplateLoader;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top