Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for prune (0.05 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
            return pruneNodeByTags(node, prunedTags);
        }
    
        /**
         * Prunes nodes based on the specified pruned tags.
         *
         * @param node the node to prune
         * @param prunedTags the array of pruned tag configurations
         * @return the pruned node
         */
        protected Node pruneNodeByTags(final Node node, final PrunedTag[] prunedTags) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

      `unschedulableAndUnresolvable` status in `PostFilter`. ([#114699](https://github.com/kubernetes/kubernetes/pull/114699), [@kerthcet](https://github.com/kerthcet))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (2)
  3. CHANGELOG/CHANGELOG-1.30.md

    ## Changelog since v1.29.0
    
    ## Changes by Kind
    
    ### Deprecation
    
    - kubectl: Removed the deprecated flag `prune-whitelist` for apply. Please use the flag `prune-allowlist` instead.
       ([#120246](https://github.com/kubernetes/kubernetes/pull/120246), [@pacoxu](https://github.com/pacoxu))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    # XPath to extract canonical URL from HTML documents.
    crawler.document.html.canonical.xpath=//LINK[@rel='canonical'][1]/@href
    # HTML tags to prune (remove) during document processing.
    crawler.document.html.pruned.tags=noscript,script,style,header,footer,aside,nav,a[rel=nofollow]
    # Maximum length of digest extracted from HTML documents.
    crawler.document.html.max.digest.length=120
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.26.md

    - Added a `--prune-allowlist` flag that can be used with `kubectl apply --prune`. This flag now replaces and functions the same as the `--prune-whitelist` flag, which has been deprecated. ([#113116](https://github.com/kubernetes/kubernetes/pull/113116), [@brianpursley](https://github.com/brianpursley))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.24.md

    - Added more message for no PodSandbox container. ([#107116](https://github.com/kubernetes/kubernetes/pull/107116), [@yxxhero](https://github.com/yxxhero))
    - Added prune flag into `diff` command to simulate `apply --prune`. ([#105164](https://github.com/kubernetes/kubernetes/pull/105164), [@ardaguclu](https://github.com/ardaguclu))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    - `kubeadm`: will now use universal deserializer to decode static pod. ([#120549](https://github.com/kubernetes/kubernetes/pull/120549), [@pacoxu](https://github.com/pacoxu))
    - `kubectl prune v2`: Switched annotation from `contains-group-resources` to `contains-group-kinds`,
      because this is what we defined in the KEP and is clearer to end-users. Although the functionality is
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 12 00:36:01 UTC 2025
    - 429.6K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/util/PrunedTag.java

            this.tag = tag;
        }
    
        /**
         * Checks if this pruned tag configuration matches the given DOM node.
         * The matching is based on tag name, and optionally ID, CSS class, or custom attributes.
         *
         * @param node the DOM node to check against this pruned tag configuration
         * @return true if the node matches this pruned tag configuration, false otherwise
         */
        public boolean matches(final Node node) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getCrawlerDocumentHtmlCanonicalXpath();
    
        /**
         * Get the value for the key 'crawler.document.html.pruned.tags'. <br>
         * The value is, e.g. noscript,script,style,header,footer,aside,nav,a[rel=nofollow] <br>
         * comment: HTML tags to prune (remove) during document processing.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  10. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            } catch (FessSystemException e) {
                assertTrue(e.getMessage().contains("Invalid pruned tag"));
            }
    
            try {
                PrunedTag.parse("[invalid]");
                fail("Should have thrown FessSystemException");
            } catch (FessSystemException e) {
                assertTrue(e.getMessage().contains("Invalid pruned tag"));
            }
    
            try {
                PrunedTag.parse(".css-only");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top