Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for developmentBinary (0.33 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftLibrary.java

        private final Property<SwiftBinary> developmentBinary;
        private final DefaultLibraryDependencies dependencies;
    
        @Inject
        public DefaultSwiftLibrary(String name, ObjectFactory objectFactory, ConfigurationContainer configurations) {
            super(name, objectFactory);
            this.objectFactory = objectFactory;
            this.configurations = configurations;
            this.developmentBinary = objectFactory.property(SwiftBinary.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppApplication.java

        private final Property<CppExecutable> developmentBinary;
        private final MainExecutableVariant mainVariant;
        private final DefaultComponentDependencies dependencies;
    
        @Inject
        public DefaultCppApplication(String name, ObjectFactory objectFactory) {
            super(name, objectFactory);
            this.objectFactory = objectFactory;
            this.developmentBinary = objectFactory.property(CppExecutable.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/swift/internal/DefaultSwiftApplication.java

        private final ObjectFactory objectFactory;
        private final Property<SwiftExecutable> developmentBinary;
        private final DefaultComponentDependencies dependencies;
    
        @Inject
        public DefaultSwiftApplication(String name, ObjectFactory objectFactory) {
            super(name, objectFactory);
            this.objectFactory = objectFactory;
            this.developmentBinary = objectFactory.property(SwiftExecutable.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

            given:
            app.binaries.realizeNow()
    
            when:
            app.developmentBinary.get()
    
            then:
            def ex = thrown(IllegalStateException)
            ex.message == "Cannot query the value of property 'developmentBinary' because it has no value available."
        }
    
        private NativeVariantIdentity getIdentity() {
            return Stub(NativeVariantIdentity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppLibrary.java

        private final ConfigurableFileCollection publicHeaders;
        private final FileCollection publicHeadersWithConvention;
        private final SetProperty<Linkage> linkage;
        private final Property<CppBinary> developmentBinary;
        private final Configuration apiElements;
        private final MainLibraryVariant mainVariant;
        private final DefaultLibraryDependencies dependencies;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/org.gradle.language.cpp.ProductionCppComponent.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>developmentBinary</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.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.language.swift.ProductionSwiftComponent.xml

            <title>Properties</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>developmentBinary</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.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftLibraryTest.groovy

            given:
            library.binaries.realizeNow()
    
            when:
            library.developmentBinary.get()
    
            then:
            def ex = thrown(IllegalStateException)
            ex.message == "Cannot query the value of property 'developmentBinary' because it has no value available."
        }
    
        private NativeVariantIdentity getIdentity() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppLibraryPluginTest.groovy

            binaries.findAll { it.debuggable && !it.optimized && it instanceof CppSharedLibrary }.size() == 1
    
            and:
            project.library.developmentBinary.get() == binaries.find { it.debuggable && !it.optimized && it instanceof CppSharedLibrary }
        }
    
        def "registers a component for the library with static linkage"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            binaries.findAll { it.debuggable && !it.optimized && it instanceof SwiftSharedLibrary }.size() == 1
    
            and:
            project.library.developmentBinary.get() == binaries.find { it.debuggable && !it.optimized && it instanceof SwiftSharedLibrary }
        }
    
        def "registers a component for the library with static linkage"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top