- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 1,789 for Central (0.08 sec)
-
guava-tests/test/com/google/common/primitives/BytesTest.java
testRotate(new byte[] {1}, 0, 0, 1, new byte[] {1}); testRotate(new byte[] {1}, 1, 0, 1, new byte[] {1}); testRotate(new byte[] {1}, 1, 1, 1, new byte[] {1}); // Rotate the central 5 elements, leaving the ends as-is testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -6, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6}); testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, -1, 1, 6, new byte[] {0, 2, 3, 4, 5, 1, 6});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 17.3K bytes - Viewed (0) -
docs/pt/docs/async.md
E a maior parte do tempo de execução é tomada por trabalho (ao invés de ficar esperando), e o trabalho em um computador é feito pela <abbr title="Unidade de Processamento Central">CPU</abbr>, que podem gerar problemas que são chamados de "limite de CPU". --- Exemplos comuns de limite de CPU são coisas que exigem processamento matemático complexo. Por exemplo:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 22.2K bytes - Viewed (0) -
docs/pt/docs/advanced/security/oauth2-scopes.md
Porque o `SecurityScopes` terá todos os escopos declarados por dependentes, você pode utilizá-lo para verificar se o token possui os escopos necessários em uma função de dependência central, e depois declarar diferentes requisitos de escopo em diferentes *operações de rota*. Todos eles serão validados independentemente para cada *operação de rota*. ## Verifique
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 21.7K bytes - Viewed (0) -
docs/tr/docs/async.md
Bu senaryoda, temizlikçilerin her biri (siz dahil) birer işlemci olacak ve üzerine düşeni yapacaktır. Yürütme süresinin çoğu (beklemek yerine) iş yapıldığından ve bilgisayardaki iş bir <abbr title="Central Processing Unit">CPU</abbr> tarafından yapıldığından, bu sorunlara "CPU bound" diyorlar". --- CPU'ya bağlı işlemlerin yaygın örnekleri, karmaşık matematik işlemleri gerektiren işlerdir. Örneğin:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 21.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java
import org.eclipse.aether.repository.RemoteRepository; /** * @since 3.2.3 */ @Named("default") @Singleton public class MavenRepositorySystem { public static final String DEFAULT_REMOTE_REPO_ID = "central"; public static final String DEFAULT_REMOTE_REPO_URL = "https://repo.maven.apache.org/maven2"; public static final String DEFAULT_LOCAL_REPO_ID = "local";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 32.6K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<type>String</type> <description> <![CDATA[ A repository id or (since Maven 2.0.9) an expression matching one or many repository ids to mirror, e.g., <code>central</code> or <code>*,!repo1</code>. <code>*</code> (since Maven 2.0.5), <code>external:*</code> (since Maven 2.0.9) and <code>external:http:*</code> (since Maven 3.8.0) have
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/BooleansTest.java
testRotate(new boolean[] {true}, 0, 0, 1, new boolean[] {true}); testRotate(new boolean[] {true}, 1, 0, 1, new boolean[] {true}); testRotate(new boolean[] {true}, 1, 1, 1, new boolean[] {true}); // Rotate the central 5 elements, leaving the ends as-is testRotate( new boolean[] {false, true, false, true, false, true, false}, -6, 1, 6,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 24.8K bytes - Viewed (0) -
docs/em/docs/async.md
👉 😐, 🔠 1️⃣ 🧹 (🔌 👆) 🔜 🕹, 🤸 👫 🍕 👨🏭. & 🏆 🛠️ 🕰 ✊ ☑ 👷 (↩️ ⌛), & 👷 💻 ⌛ <abbr title="Central Processing Unit">💽</abbr>, 👫 🤙 👫 ⚠ "💽 🎁". --- ⚠ 🖼 💽 🔗 🛠️ 👜 👈 🚚 🏗 🧪 🏭. 🖼: * **🎧** ⚖️ **🖼 🏭**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 18.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/FloatsTest.java
testRotate(new float[] {1}, 0, 0, 1, new float[] {1}); testRotate(new float[] {1}, 1, 0, 1, new float[] {1}); testRotate(new float[] {1}, 1, 1, 1, new float[] {1}); // Rotate the central 5 elements, leaving the ends as-is testRotate(new float[] {0, 1, 2, 3, 4, 5, 6}, -6, 1, 6, new float[] {0, 2, 3, 4, 5, 1, 6}); testRotate(new float[] {0, 1, 2, 3, 4, 5, 6}, -1, 1, 6, new float[] {0, 2, 3, 4, 5, 1, 6});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 30.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
testRotate(new int[] {1}, 0, 0, 1, new int[] {1}); testRotate(new int[] {1}, 1, 0, 1, new int[] {1}); testRotate(new int[] {1}, 1, 1, 1, new int[] {1}); // Rotate the central 5 elements, leaving the ends as-is testRotate(new int[] {0, 1, 2, 3, 4, 5, 6}, -6, 1, 6, new int[] {0, 2, 3, 4, 5, 1, 6}); testRotate(new int[] {0, 1, 2, 3, 4, 5, 6}, -1, 1, 6, new int[] {0, 2, 3, 4, 5, 1, 6});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.1K bytes - Viewed (0)