Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for outdated (0.04 sec)

  1. scripts/translate.py

                    "UNLESS you were instructed earlier to behave different, there MUST NOT be whole sentences or partial sentences in the updated translation, which are not in the original English content, and there MUST NOT be whole sentences or partial sentences in the original English content, which are not in the updated translation. Remember: the updated translation shall be IN SYNC with the original English content.",
                    "Previous translation:",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:05:53 UTC 2025
    - 34.1K bytes
    - Viewed (0)
  2. .github/workflows/translate.yml

            required: false
            default: "false"
          command:
            description: Command to run
            type: choice
            options:
              - translate-page
              - translate-lang
              - update-outdated
              - add-missing
              - update-and-add
              - remove-removable
          language:
            description: Language to translate to as a letter code (e.g. "es" for Spanish)
            type: string
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:48:45 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. scripts/docs.py

        """
        readme_path = Path("README.md")
        old_content = readme_path.read_text()
        new_content = generate_readme_content()
        if new_content != old_content:
            print("README.md outdated from the latest index.md")
            print("Updating README.md")
            readme_path.write_text(new_content, encoding="utf-8")
            raise typer.Exit(1)
        print("README.md is up to date ✅")
    
    
    @app.command()
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ### Translations
    
    * 🌐 Update translations for de (update-outdated). PR [#14602](https://github.com/fastapi/fastapi/pull/14602) by [@nilslindemann](https://github.com/nilslindemann).
    * 🌐 Update translations for de (update-outdated). PR [#14581](https://github.com/fastapi/fastapi/pull/14581) by [@nilslindemann](https://github.com/nilslindemann).
    
    ### Internal
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.33.md

    - Updated CNI plugins to `v1.6.2`. ([#129776](https://github.com/kubernetes/kubernetes/pull/129776), [@saschagrunert](https://github.com/saschagrunert)) [SIG Cloud Provider, Node and Testing]
    - Updated cri-tools to `v1.32.0`. ([#129116](https://github.com/kubernetes/kubernetes/pull/129116), [@saschagrunert](https://github.com/saschagrunert))
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 10 01:15:24 UTC 2025
    - 334.8K bytes
    - Viewed (0)
  6. scripts/contributors.py

        updated = [
            update_content(content_path=contributors_path, new_content=top_contributors),
            update_content(content_path=translators_path, new_content=top_translators),
            update_content(
                content_path=translation_reviewers_path,
                new_content=top_translations_reviewers,
            ),
        ]
    
        if not any(updated):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. scripts/topic_repos.py

        logging.info(f"Creating a new branch {branch_name}")
        subprocess.run(["git", "checkout", "-b", branch_name], check=True)
        logging.info("Adding updated file")
        subprocess.run(["git", "add", str(repos_path)], check=True)
        logging.info("Committing updated file")
        message = "👥 Update FastAPI GitHub topic repositories"
        subprocess.run(["git", "commit", "-m", message], check=True)
        logging.info("Pushing branch")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. scripts/sponsors.py

        # github_sponsors_path = Path("../docs/en/data/github_sponsors.yml")
        github_sponsors_path = Path("./docs/en/data/github_sponsors.yml")
        updated = update_content(
            content_path=github_sponsors_path, new_content=github_sponsors
        )
    
        if not updated:
            logging.info("The data hasn't changed, finishing.")
            return
    
        logging.info("Setting up GitHub Actions git user")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. scripts/people.py

        }
    
        # For local development
        # people_path = Path("../docs/en/data/people.yml")
        people_path = Path("./docs/en/data/people.yml")
    
        updated = update_content(content_path=people_path, new_content=people)
    
        if not updated:
            logging.info("The data hasn't changed, finishing.")
            return
    
        logging.info("Setting up GitHub Actions git user")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            protected Writer writer;
    
            /** The stemmer override item being added or updated. */
            protected StemmerOverrideItem item;
    
            /**
             * Constructs a new updater for a stemmer override item.
             *
             * @param newItem The item to be added or updated.
             * @throws DictionaryException if the temporary file cannot be created.
             */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top