- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 694 for prints (0.04 seconds)
-
scripts/add_latest_release_date.py
if date_part: print(f"Latest release {version} already has a date: {date_part}") sys.exit(0) today = date.today().isoformat() lines[i] = f"## {version} ({today})\n" print(f"Added date: {version} ({today})") with open(RELEASE_NOTES_FILE, "w") as f: f.writelines(lines) sys.exit(0) print("No release header found") sys.exit(1)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:06:36 GMT 2026 - 1023 bytes - Click Count (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
out.print(name); out.print("\"><b>"); out.print(name); out.print("</b></a>"); } else { out.print(";\" HREF=\""); out.print(path); out.print(name); out.print("\"><b>"); out.print(name);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 22.6K bytes - Click Count (0) -
internal/grid/manager.go
defer func() { if debugPrint { fmt.Printf("grid: Handler returning from: %v %v\n", req.Method, req.URL) } if r := recover(); r != nil { debug.PrintStack() err := fmt.Errorf("grid: panic: %v\n", r) gridLogIf(context.Background(), err, err.Error()) w.WriteHeader(http.StatusInternalServerError) } }() if debugPrint { fmt.Printf("grid: Got a %s request for: %v\n", req.Method, req.URL)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Nov 12 20:41:41 GMT 2024 - 10.8K bytes - Click Count (0) -
build-tools-internal/src/main/resources/templates/release-notes-index.asciidoc
[[es-release-notes]] = Release notes [partintro] -- This section summarizes the changes in each release. <% versions.each { print "* <<release-notes-${ it }>>\n" } %> --Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 257 bytes - Click Count (0) -
docs/de/docs/advanced/advanced-python-types.md
Zum Beispiel könnten Sie deklarieren, dass etwas ein `str` oder `None` sein könnte: ```python from typing import Union def say_hi(name: Union[str, None]): print(f"Hi {name}!") ``` `typing` hat außerdem eine Abkürzung, um zu deklarieren, dass etwas `None` sein könnte, mit `Optional`. Hier ist ein Tipp aus meiner sehr **subjektiven** Perspektive:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 07:57:30 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/ru/docs/advanced/advanced-python-types.md
Например, вы можете объявить, что значение может быть `str` или `None`: ```python from typing import Union def say_hi(name: Union[str, None]): print(f"Hi {name}!") ``` В `typing` также есть сокращение, чтобы объявить, что значение может быть `None`, — `Optional`. Вот совет с моей очень субъективной точки зрения: - 🚨 Избегайте использования `Optional[SomeType]`
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 19:57:34 GMT 2026 - 3.3K bytes - Click Count (0) -
docs/tr/docs/advanced/advanced-python-types.md
Örneğin, bir şeyin `str` ya da `None` olabileceğini şöyle belirtebilirsiniz: ```python from typing import Union def say_hi(name: Union[str, None]): print(f"Hi {name}!") ``` `typing`, bir şeyin `None` olabileceğini belirtmek için `Optional` ile bir kısayol da sunar. Benim oldukça öznel bakış açıma göre küçük bir ipucu: - 🚨 `Optional[SomeType]` kullanmaktan kaçının
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:41:38 GMT 2026 - 2.1K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/mvn
# under the License. # ----------------------------------------------------------------------------- # Apache Maven Startup Script # # Environment Variable Prerequisites # # JAVA_HOME (Optional) Points to a Java installation. # MAVEN_ARGS (Optional) Arguments passed to Maven before CLI arguments. # MAVEN_OPTS (Optional) Java runtime options used when Maven is executed.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 9.2K bytes - Click Count (0) -
docs/fr/docs/advanced/advanced-python-types.md
```python from typing import Union def say_hi(name: Union[str, None]): print(f"Hi {name}!") ``` `typing` propose également un raccourci pour déclarer que quelque chose peut être `None`, avec `Optional`. Voici un conseil issu de mon point de vue très subjectif : - 🚨 Évitez d'utiliser `Optional[SomeType]` - À la place ✨ **utilisez `Union[SomeType, None]`** ✨.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 2.3K bytes - Click Count (0) -
docs_src/handling_errors/tutorial006_py310.py
@app.exception_handler(StarletteHTTPException) async def custom_http_exception_handler(request, exc): print(f"OMG! An HTTP error!: {repr(exc)}") return await http_exception_handler(request, exc) @app.exception_handler(RequestValidationError) async def validation_exception_handler(request, exc): print(f"OMG! The client sent invalid data!: {exc}") return await request_validation_exception_handler(request, exc)
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 928 bytes - Click Count (0)