- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 50 for worry (0.02 seconds)
-
docs/en/docs/help-fastapi.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 12.6K bytes - Click Count (0) -
docs/en/docs/advanced/advanced-python-types.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 18:32:12 GMT 2026 - 2K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java
private MinimalIterable(Iterator<E> iterator) { this.iterator = iterator; } @Override public Iterator<E> iterator() { if (iterator == null) { // TODO: throw something else? Do we worry that people's code and tests // might be relying on this particular type of exception? throw new IllegalStateException(); } try { return iterator; } finally { iterator = null;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.1K bytes - Click Count (0) -
docs/en/docs/tutorial/header-params.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java
private MinimalIterable(Iterator<E> iterator) { this.iterator = iterator; } @Override public Iterator<E> iterator() { if (iterator == null) { // TODO: throw something else? Do we worry that people's code and tests // might be relying on this particular type of exception? throw new IllegalStateException(); } try { return iterator; } finally { iterator = null;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java
throw new GraphConflictResolutionException("graph with an entry, but not vertices do not exist"); } if (graph.isEmptyEdges()) { return null; // no edges - nothing to worry about } final TreeSet<MetadataGraphVertex> vertices = graph.getVertices(); try { // edge case - single vertex graph if (vertices.size() == 1) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 7.4K bytes - Click Count (0) -
guava/src/com/google/common/base/FinalizableReferenceQueue.java
@Override public @Nullable Class<?> loadFinalizer() { if (disabled) { return null; } if (isAndroid()) { // We need not worry about class unloading under Android. Plus, this approach wouldn't work. return null; } ClassLoader systemLoader; try { systemLoader = ClassLoader.getSystemClassLoader();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 19:26:59 GMT 2026 - 15.8K bytes - Click Count (0) -
docs/en/docs/tutorial/stream-json-lines.md
Because each JSON object will be separated by a new line, they can't contain literal new line characters in their content, but they can contain escaped new lines (`\n`), which is part of the JSON standard. But normally you won't have to worry about it, it's done automatically, continue reading. 🤓 /// ## Use Cases { #use-cases }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.3K bytes - Click Count (0) -
android/guava/src/com/google/common/base/FinalizableReferenceQueue.java
@Override public @Nullable Class<?> loadFinalizer() { if (disabled) { return null; } if (isAndroid()) { // We need not worry about class unloading under Android. Plus, this approach wouldn't work. return null; } ClassLoader systemLoader; try { systemLoader = ClassLoader.getSystemClassLoader();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 19:26:59 GMT 2026 - 15.8K bytes - Click Count (0) -
android/guava/src/com/google/common/base/internal/Finalizer.java
throw new AssertionError(e); } } private static @Nullable Field getInheritableThreadLocalsField() { if (isAndroid()) { /* * We need not worry about class unloading under Android. Plus, this approach doesn't always * work under Android. * * (Clearing inheritableThreadLocals could still be useful independent of class unloading, but
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 03:19:29 GMT 2026 - 9.6K bytes - Click Count (0)