Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for appendix (0.08 sec)

  1. scripts/translate.py

        skipped_paths: list[Path] = []
        for p in paths_to_process:
            lang_path = generate_lang_path(lang=language, path=p)
            if lang_path.exists():
                skipped_paths.append(p)
                continue
            missing_paths.append(p)
        print("Paths to skip:")
        for p in skipped_paths:
            print(f"  - {p}")
        print(f"Total paths to skip: {len(skipped_paths)}")
        print("Paths to process:")
    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. fastapi/_compat/v2.py

                            schema=item,
                            old_name_to_new_name_map=old_name_to_new_name_map,
                        )
                        new_value.append(new_item)
    
                    else:
                        new_value.append(item)
                new_schema[key] = new_value
        return new_schema
    
    
    def _remap_definitions_and_field_mappings(
        *,
        model_name_map: ModelNameMap,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  3. fastapi/routing.py

                callbacks=current_callbacks,
                openapi_extra=openapi_extra,
                generate_unique_id_function=current_generate_unique_id,
            )
            self.routes.append(route)
    
        def api_route(
            self,
            path: str,
            *,
            response_model: Any = Default(None),
            status_code: Optional[int] = None,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
Back to top