Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 86 for Assembler (0.05 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPlugin.java

             * from source without the overhead of creating an archive by using assembleExtracted instead of assemble.
             */
            public String getAssembleTaskName() {
                return extractedAssembleSupported ? "extractedAssemble" : "assemble";
            }
        }
    
        private static class DistributionProjectArtifact {
            final File distFile;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 14.5K bytes
    - Click Count (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         *
         * @return the effective model of the parent POM, never {@code null}
         */
        @Nonnull
        Model getParentModel();
    
        /**
         * Gets the assembled model with inheritance, interpolation and profile injection.
         *
         * @return The assembled model, never {@code null}.
         */
        @Nonnull
        Model getEffectiveModel();
    
        /**
         * Gets the profiles that were active during model building.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Nov 18 17:20:31 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  3. src/cmd/asm/internal/asm/testdata/loong64.s

    #include "../../../../../runtime/textflag.h"
    // TODO: cover more instruction
    
    TEXT foo(SB),DUPOK|NOSPLIT,$0
    	JAL	1(PC)	//CALL 1(PC)	//00040054
    	JAL	(R4)	//CALL (R4)	//8100004c
    	// relocation in play so the assembled offset should be 0
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Mar 22 18:50:59 GMT 2023
    - 434 bytes
    - Click Count (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingResult.java

         *
         * @return The model identifiers from the lineage of models, never {@code null}.
         */
        List<String> getModelIds();
    
        /**
         * Gets the assembled model.
         *
         * @return The assembled model, never {@code null}.
         */
        Model getEffectiveModel();
    
        /**
         * Gets the raw model as it was read from the input model source. Apart from basic validation, the raw model has not
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  5. docs/fr/docs/environment-variables.md

    La valeur de la variable `PATH` est une longue chaîne composée de répertoires séparés par deux-points `:` sous Linux et macOS, et par point-virgule `;` sous Windows.
    
    Par exemple, la variable d'environnement `PATH` peut ressembler à ceci :
    
    //// tab | Linux, macOS
    
    ```plaintext
    /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    ```
    
    Cela signifie que le système doit rechercher les programmes dans les répertoires :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/internal/fake_git/remote/distribution/archives/build.gradle

            from('.')
            destinationDir = file('build/extractedDistro')
        }
    
        tasks.register("extractedAssemble").configure {
            dependsOn('extracted')
        }
    
        tasks.named("assemble").configure {
            dependsOn('tar')
        }
    }
    
    def calculateBranchVersion() {
        File f = rootProject.file(".git/refs/heads/origin")
        def branchName = f.list()?.first().trim()
        return branchName + ".1"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  7. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/PublishPluginFuncTest.groovy

                }
                
                version = "1.0"
                group = 'org.acme'
                description = "custom project description"
            """
    
            when:
            def result = gradleRunner('assemble').build()
    
            then:
            result.task(":generatePom").outcome == TaskOutcome.SUCCESS
            file("build/distributions/hello-world-1.0.jar").exists()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 19K bytes
    - Click Count (0)
  8. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t03/ProjectInheritanceTest.java

    /**
     * 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: Fri Mar 21 04:56:21 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  9. benchmarks/build.gradle

     * Side Public License, v 1.
     */
    
    apply plugin: 'elasticsearch.java'
    apply plugin: 'application'
    mainClassName = 'org.openjdk.jmh.Main'
    
    tasks.named("assemble").configure { enabled = false }
    archivesBaseName = 'elasticsearch-benchmarks'
    
    tasks.named("test").configure { enabled = false }
    
    configurations {
      expression
      painless
    }
    
    dependencies {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  10. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

    /**
     * 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: Fri Oct 25 12:31:46 GMT 2024
    - 3.5K bytes
    - Click Count (0)
Back to Top