Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for adjusting (0.07 seconds)

  1. scripts/doc_parsing_utils.py

    
    def _construct_markdown_link(
        url: str,
        text: str,
        title: str | None,
        attributes: str | None,
        lang_code: str,
    ) -> str:
        """
        Construct a markdown link, adjusting the URL for the given language code if needed.
        """
        url = _add_lang_code_to_url(url, lang_code)
    
        if title:
            link = f'[{text}]({url} "{title}")'
        else:
            link = f"[{text}]({url})"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  2. CHANGELOG/CHANGELOG-1.33.md

    - Fixed a test failure in `TestSetVolumeOwnershipOwner` for `fsGroup=3000` and
      symlink cases in `volume_linux_test.go`. The tests were failing due to invalid
      ownership verification and the issue has been resolved by adjusting file
      permission change handling, ensuring correct behavior when run as root. ([#130616](https://github.com/kubernetes/kubernetes/pull/130616), [@gnufied](https://github.com/gnufied))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:17:58 GMT 2026
    - 369K bytes
    - Click Count (0)
Back to Top