Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for adjusting (0.12 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)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                plain text representation. If you need to modify the index page of the generated website,
                you are able to specify your own instead of adjusting this text.</description>
              <type>String</type>
            </field>
            <field>
              <name>url</name>
              <version>3.0.0+</version>
              <description>
                <![CDATA[
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 17 09:48:21 GMT 2026
    - 133.5K bytes
    - Click Count (0)
Back to Top