Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for buildType1 (0.13 sec)

  1. .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)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

                allprojects {
                    apply plugin: 'visual-studio'
                }
                subprojects {
                    apply plugin: 'cpp'
    
                    model {
                        buildTypes {
                            debug
                            release
                        }
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

                    }
                    compileOptions {
                        sourceCompatibility JavaVersion.VERSION_1_8
                        targetCompatibility JavaVersion.VERSION_1_8
                    }
                    buildTypes {
                        release {
                            minifyEnabled false
                        }
                    }
                }
            """.stripIndent()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            failure.assertHasDescription("Could not determine the dependencies of task ':linkMainExecutable'.")
            failure.assertHasCause("No shared library binary available for library 'hello' with [flavor: 'default', platform: 'one', buildType: 'debug']")
        }
    
        @Issue("GRADLE-3499")
        @ToBeFixedForConfigurationCache(because = ":components")
        def "can create a binary which name contains dots"() {
            when:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            def executable = executable("build/exe/main/${variantContext.asPath}${module}")
            return variantContext.buildType.name == 'release' ? executable.strippedRuntimeFile : executable.file
        }
    
        @Override
        Map<String, String> getVariantFileInformation(String linkage, String module, String variantModuleNameWithVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

                        "excludes": [
                            { "group": "*", "module": "excluded-lib" }
                        ],
                        "attributes": {
                           "buildType": "debug"
                        }
                    }
                ]
            },
            {
                "name": "runtime",
                "attributes": {
                    "org.gradle.usage": "java-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

          - Other compatible attributes:
              - Found buildType 'debug' but wasn't required.
              - Provides usage 'api'
      - Configuration ':lib:compile' variant release:
          - Incompatible attribute:
              - Required artifactType 'dll' and found incompatible value 'jar'.
          - Other compatible attributes:
              - Found buildType 'release' but wasn't required.
              - Provides usage 'api'
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

                        "excludes": [
                            { "group": "*", "module": "excluded-lib" }
                        ],
                        "attributes": {
                           "buildType": "debug"
                        }
                    }
                ]
            },
            {
                "name": "runtime",
                "attributes": {
                    "org.gradle.usage": "java-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.platform.NativePlatform</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.BuildType</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.Flavor</td>
                </tr>
                <tr>
                    <td>org.gradle.language.assembler.AssemblerSourceSet</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            def library = sharedLibrary("${module}/build/lib/main/${variantContext.asPath}${module}")
            return variantContext.buildType.name == 'release' ? library.strippedRuntimeFile : library.file
        }
    
        @Override
        Map<String, String> getVariantFileInformation(String linkage, String module, String variantModuleNameWithVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
Back to top