- Sort Score
- Result 10 results
- Languages All
Results 1851 - 1860 of 3,127 for xcode (0.04 sec)
-
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingResult.java
- private PersistedToolchains effectiveToolchains;
- private List<Problem> problems;
- /**
- * Default constructor
- *
- * @param effectiveToolchains the merged toolchains, may not be {@code null}
- * @param problems the problems while building the effectiveToolchains, if any.
- */
- public DefaultToolchainsBuildingResult(PersistedToolchains effectiveToolchains, List<Problem> problems) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
docs/pt/docs/deployment/manually.md
- <font color="#3465A4">INFO </font> Resolved absolute path <font color="#75507B">/home/user/code/awesomeapp/</font><font color="#AD7FA8">main.py</font>
- <font color="#3465A4">INFO </font> Searching for package file structure from directories with <font color="#3465A4">__init__.py</font> files
- <font color="#3465A4">INFO </font> Importing from <font color="#75507B">/home/user/code/</font><font color="#AD7FA8">awesomeapp</font>
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:10:02 UTC 2024 - 8.2K bytes - Viewed (0) -
docs/pt/docs/tutorial/request-files.md
- ///
- /// warning | Aviso
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 30 19:52:32 UTC 2024 - 7.8K bytes - Viewed (0) -
docs/fr/docs/deployment/docker.md
- Cette image est dotée d'un mécanisme d'"auto-tuning", de sorte qu'il vous suffit d'ajouter votre code pour obtenir automatiquement des performances très élevées. Et sans faire de sacrifices.
- Mais vous pouvez toujours changer et mettre à jour toutes les configurations avec des variables d'environnement ou des fichiers de configuration.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 7.5K bytes - Viewed (0) -
README.md
- ## Script
- - [Groovy](https://github.com/codelibs/fess-script-groovy)
- - [OGNL](https://github.com/codelibs/fess-script-ognl)
- ## Development Information
- ### Get Source Code
- 1. Clone Fess's repository:
- ```
- $ cd ~/workspace
- $ git clone https://github.com/codelibs/fess.git
- ```
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.3K bytes - Viewed (1) -
android/guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java
- * Thread.currentThread().setUncaughtExceptionHandler(UncaughtExceptionHandlers.systemExit());
- * ...
- * </pre>
- *
- * <p>The returned handler logs any exception at severity {@code SEVERE} and then shuts down the
- * process with an exit status of 1, indicating abnormal termination.
- */
- public static UncaughtExceptionHandler systemExit() {
- return new Exiter(Runtime.getRuntime());
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 2.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/TestLogHandler.java
- import java.util.List;
- import java.util.logging.Handler;
- import java.util.logging.LogRecord;
- import org.checkerframework.checker.nullness.qual.Nullable;
- /**
- * Tests may use this to intercept messages that are logged by the code under test. Example:
- *
- * <pre>
- * TestLogHandler handler;
- *
- * protected void setUp() throws Exception {
- * super.setUp();
- * handler = new TestLogHandler();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 21 20:53:25 UTC 2024 - 2.8K bytes - Viewed (0) -
guava/src/com/google/common/cache/RemovalCause.java
- * CacheBuilder#maximumSize} or {@link CacheBuilder#maximumWeight}.
- */
- SIZE {
- @Override
- boolean wasEvicted() {
- return true;
- }
- };
- /**
- * Returns {@code true} if there was an automatic removal due to eviction (the cause is neither
- * {@link #EXPLICIT} nor {@link #REPLACED}).
- */
- abstract boolean wasEvicted();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 2.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/DefaultRepositoryRequest.java
- // enables no-arg constructor
- }
- /**
- * Creates a shallow copy of the specified repository request.
- *
- * @param repositoryRequest The repository request to copy from, must not be {@code null}.
- */
- public DefaultRepositoryRequest(RepositoryRequest repositoryRequest) {
- setLocalRepository(repositoryRequest.getLocalRepository());
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/DistributionManagementArtifactRelocationSource.java
- * existed in Maven 3 land, uses POM distributionManagement/relocation.
- * <p>
- * Note: this component should kick-in last regarding relocations.
- *
- * @since 4.0.0
- * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead
- */
- @Singleton
- @Named(DistributionManagementArtifactRelocationSource.NAME)
- @Priority(5)
- @Deprecated(since = "4.0.0")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.2K bytes - Viewed (0)