- Sort Score
- Num 10 results
- Language All
Results 251 - 260 of 407 for relativo (0.07 seconds)
-
android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java
import com.google.common.cache.TestingRemovalListeners.CountingRemovalListener; import java.util.List; import java.util.Set; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Tests relating to cache eviction: what does and doesn't count toward maximumSize, what happens * when maximumSize is reached, etc. * * @author mike nonemacher */ @NullUnmarked public class CacheEvictionTest extends TestCase {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 15K bytes - Click Count (0) -
docs/de/docs/async.md
Das „Warten auf etwas anderes“ bezieht sich normalerweise auf <abbr title="Input and Output - Eingabe und Ausgabe">I/O</abbr>-Operationen, die relativ „langsam“ sind (im Vergleich zur Geschwindigkeit des Prozessors und des Arbeitsspeichers), wie etwa das Warten darauf, dass: * die Daten des Clients über das Netzwerk empfangen wurden
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 27.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
checkElementsNotNull((Object[]) array); Arrays.sort(array); return asImmutableList(array); } /** * Returns an immutable list containing the given elements, in sorted order relative to the * specified comparator. The sorting algorithm used is stable, so elements that compare as equal * will stay in the order in which they appear in the input. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 27.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
verify(model, test); } } } } // identical to testPutTwoAndRemove, // verifies that putCoalescing() doesn't cause any mappings to change relative to put() public void testPutCoalescingTwoAndRemove() { for (Range<Integer> rangeToPut1 : RANGES) { for (Range<Integer> rangeToPut2 : RANGES) { for (Range<Integer> rangeToRemove : RANGES) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Oct 28 16:03:47 GMT 2025 - 30.1K bytes - Click Count (0) -
docs/ru/docs/tutorial/bigger-applications.md
Поэтому мы используем относительный импорт с `..` для зависимостей: {* ../../docs_src/bigger_applications/app_an_py310/routers/items.py hl[3] title["app/routers/items.py"] *} #### Как работает относительный импорт { #how-relative-imports-work } /// tip | Подсказка Если вы прекрасно знаете, как работает импорт, переходите к следующему разделу ниже. /// Одна точка `.`, как здесь: ```PythonCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 29.7K bytes - Click Count (0) -
CONTRIBUTING.md
```bash bazel run //tensorflow/tools/docs:tf_doctest ``` or ```bash bazel run //tensorflow/tools/docs:tf_doctest -- --module=ops.array_ops ``` The `--module` is relative to `tensorflow.python`. #### Debug builds When [building Tensorflow](https://www.tensorflow.org/install/source), passing `--config=dbg` to Bazel will build with debugging information and withoutCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Jan 11 04:47:59 GMT 2025 - 15.9K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Striped.java
* are guaranteed to not deadlock each other. * * <p>It should be noted that using a {@code Striped<L>} with relatively few stripes, and {@code * bulkGet(keys)} with a relative large number of keys can cause an excessive number of shared * stripes (much like the birthday paradox, where much fewer than anticipated birthdays are neededCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 22:01:32 GMT 2025 - 20.6K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/bigger-applications.md
我們需要從模組 `app.dependencies`(檔案 `app/dependencies.py`)取得相依性函式。 因此我們用 `..` 做相對匯入相依性: {* ../../docs_src/bigger_applications/app_an_py310/routers/items.py hl[3] title["app/routers/items.py"] *} #### 相對匯入如何運作 { #how-relative-imports-work } /// tip | 提示 如果你對匯入的運作方式十分了解,可以直接跳到下一節。 /// 單一的點號 `.`,如下: ```Python from .dependencies import get_token_header ``` 代表:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 18.7K bytes - Click Count (0) -
scripts/general-llm-prompt.md
``` ### Beispiel { #example } ``` ### Links Use the following rules for links (apply both to Markdown-style links ([text](url)) and to HTML-style <a href="url">text</a> tags): - For relative URLs, only translate the link text. Do not translate the URL or its parts. Example: Source (English): ``` [One of the fastest Python frameworks available](#performance) ``` Result (German):Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Mar 18 10:55:36 GMT 2026 - 14.6K bytes - Click Count (0) -
scripts/docs.py
used_package_dirs.add(package_root) removed = 0 for py_file in sorted(docs_src_path.rglob("*.py")): if py_file.name == "__init__.py": continue # Build the relative path as it appears in includes (e.g. docs_src/first_steps/tutorial001.py) rel_path = str(py_file) if rel_path in all_docs_content: continue
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0)