Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 86 for Assembler (0.06 seconds)

  1. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

                    listOf(
                        "org.gradle.performance.regression.java.JavaIDEModelPerformanceTest.get IDE model for IDEA",
                        "org.gradle.performance.regression.java.JavaUpToDatePerformanceTest.up-to-date assemble (parallel true)",
                        "org.gradle.performance.crossbuild.TaskAvoidancePerformanceTest.help with lazy and eager tasks",
                    ),
                )
    
                checkCleanM2AndAndroidUserHome(os)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 08 01:31:13 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

         */
        void validateRawModel(Model model, ModelBuildingRequest request, ModelProblemCollector problems);
    
        /**
         * Checks the specified (effective) model for missing or invalid values. The effective model is fully assembled and
         * has undergone inheritance, interpolation and other model operations.
         *
         * @param model The model to validate, must not be {@code null}.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/SymbolicLinkPreservingTar.java

    import java.io.File;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.nio.file.Files;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * A custom archive task that assembles a tar archive that preserves symbolic links.
     *
     * This task is necessary because the built-in task {@link org.gradle.api.tasks.bundling.Tar} does not preserve symbolic links.
     */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 8.7K bytes
    - Click Count (0)
  4. docs/fr/docs/how-to/custom-docs-ui-assets.md

    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    ```
    
    Créez maintenant un répertoire pour stocker ces fichiers statiques.
    
    Votre nouvelle structure de fichiers pourrait ressembler à ceci :
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    └── static/
    ```
    
    ### Télécharger les fichiers { #download-the-files }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  5. README.asciidoc

    ./gradlew :distribution:archives:darwin-tar:assemble
    ./gradlew :distribution:archives:windows-zip:assemble
    ----
    
    To build distributions for all supported platforms, run:
    ----
    ./gradlew assemble
    ----
    
    Distributions are output to `distributions/archives`.
    
    To run the test suite, see xref:TESTING.asciidoc[TESTING].
    
    [[docs]]
    == Documentation
    
    For the complete Elasticsearch documentation visit
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Apr 20 13:32:21 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  6. docs/fr/docs/advanced/async-tests.md

    │   └── test_main.py
    ```
    
    Le fichier `main.py` contiendrait :
    
    {* ../../docs_src/async_tests/app_a_py310/main.py *}
    
    Le fichier `test_main.py` contiendrait les tests pour `main.py`, il pourrait maintenant ressembler à ceci :
    
    {* ../../docs_src/async_tests/app_a_py310/test_main.py *}
    
    ## Exécuter { #run-it }
    
    Vous pouvez lancer vos tests comme d'habitude via :
    
    <div class="termy">
    
    ```console
    $ pytest
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchJavaPlugin.java

                project.getTasks().named(JavaPlugin.JAR_TASK_NAME, Jar.class).configure(jar -> jar.getArchiveClassifier().set("original"));
                // Make sure we assemble the shadow jar
                project.getTasks().named(BasePlugin.ASSEMBLE_TASK_NAME).configure(task -> task.dependsOn("shadowJar"));
            });
        }
    
        private static void configureJarManifest(Project project) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 16:04:42 GMT 2021
    - 7.3K bytes
    - Click Count (0)
  8. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.condition.OS.WINDOWS;
    
    /**
     * A test which demonstrates maven's recursive inheritance where
     * a distinct value is taken from each parent contributing to
     * the final model of the project being assembled. There is no
     * overriding going on amongst the models being used in this test:
     * each model in the lineage is providing a value that is not present
     * anywhere else in the lineage. We are just making sure that values
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jun 04 10:35:11 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/dependencies/sub-dependencies.md

    Mais il est très puissant et vous permet de déclarer des « graphes » (arbres) de dépendances imbriquées aussi profondément que vous le souhaitez.
    
    /// tip | Astuce
    
    Tout cela peut ne pas sembler très utile avec ces exemples simples.
    
    Mais vous verrez à quel point c'est utile dans les chapitres sur la **sécurité**.
    
    Et vous verrez aussi la quantité de code que cela vous fera économiser.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  10. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

                        "Which performance test to run. Should be the fully qualified class name dot (unrolled) method name. " +
                            "E.g. org.gradle.performance.regression.java.JavaUpToDatePerformanceTest.up-to-date assemble (parallel true)",
                )
                text(
                    "testJavaVersion",
                    "17",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = false,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 14:08:32 GMT 2026
    - 6K bytes
    - Click Count (0)
Back to Top