Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withBinaryType (0.42 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

        }
    
        def "prefers role over binary type in output directory names"() {
            def namingScheme = DefaultBinaryNamingScheme.component("testSuite").withBinaryType("GoogleTestExecutable").withVariantDimension("linux")
    
            expect:
            namingScheme.getOutputDirectory(new File(".")) == new File(".", "testSuite/googleTestExecutable/linux")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/binary/BaseBinarySpec.java

            modelNode.addLink(itemRegistration);
    
            namingScheme = DefaultBinaryNamingScheme
                .component(parentComponentName())
                .withBinaryName(getName())
                .withBinaryType(getTypeName());
        }
    
        private static BinaryInfo validate(BinaryInfo info) {
            if (info == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.8K bytes
    - Viewed (0)
Back to top