Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for buildType2 (0.21 sec)

  1. .teamcity/src/main/kotlin/projects/PerformanceTestProject.kt

        this.id(spec.asConfigurationId(model))
        this.name = spec.asName()
    }) {
        init {
            performanceTests.forEach(this::buildType)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinary.xml

                </thead>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
                    <td>buildType</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         */
        @Variant
        NativePlatform getTargetPlatform();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.BuildType} used to construct this binary.
         */
        @Variant
        BuildType getBuildType();
    
        /**
         * The libraries that should be linked into this binary.
         */
        Collection<NativeDependencySet> getLibs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            assertEquals(rootProject.subProjects.size, model.stages.size)
            assertEquals(rootProject.buildTypes.size, model.stages.size + 1) // +1 for the GitHubMergeQueueCheckPass
        }
    
        @Test
        fun configurationsHaveDependencies() {
            val stagePassConfigs = rootProject.buildTypes.filter { it !is GitHubMergeQueueCheckPass }
            assertEquals(model.stages.size, stagePassConfigs.size)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/InstrumentationCodeGenerator.java

        );
    
        interface GenerationResult {
    
            interface CanGenerateClasses extends GenerationResult {
                Collection<String> getClassNames();
                void buildType(String className, TypeSpec.Builder builder);
                Collection<CallInterceptionRequest> getCoveredRequests();
            }
    
            class CodeFailures implements GenerationResult, HasFailures {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

        }
    
        requirements {
            // These tests are usually heavy and the build time is twice on EC2 agents
            requiresNotEc2Agent()
        }
    
        applyTestDefaults(
            model = model,
            buildType = this,
            gradleTasks = ":smoke-ide-test:smokeIdeTest",
            extraParameters = buildScanTag("SmokeIdeTests"),
        )
    }) {
        companion object {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeBinarySpec.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>buildType</td>
                </tr>
                <tr>
                    <td>flavor</td>
                </tr>
                <tr>
                    <td>targetPlatform</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetedNativeComponent.java

         * Specifies the names of one or more {@link Flavor}s that this component should be built for.
         */
        void targetFlavors(String... flavorSelectors);
    
        /**
         * Specifies the names of one or more {@link BuildType}s that this component should be built for.
         */
        void targetBuildTypes(String... buildTypeSelectors);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeModelControllerServices.java

         *
         * <p>Contributes the following services:</p>
         * <ul>
         *     <li>{@link org.gradle.api.internal.BuildType}</li>
         *     <li>{@link BuildModelParameters}</li>
         *     <li>{@link BuildActionModelRequirements}</li>
         * </ul>
         */
        Supplier servicesForBuildTree(BuildActionModelRequirements actionModelRequirements);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/RequestGroupingInstrumentationClassSourceGenerator.java

                @Override
                public Collection<String> getClassNames() {
                    return classContentByName.keySet();
                }
    
                @Override
                public void buildType(String className, TypeSpec.Builder builder) {
                    classContentByName.get(className).accept(builder);
                }
    
                @Override
                public List<CallInterceptionRequest> getCoveredRequests() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 08:22:43 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top