Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for developmentBinary (0.26 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/integTest/groovy/org/gradle/language/swift/tasks/SwiftUnexportMainSymbolIntegrationTest.groovy

                apply plugin: "swift-application"
                task unexport(type: UnexportMainSymbol) {
                    outputDirectory = layout.buildDirectory.dir("relocated")
                    objects.from { components.main.developmentBinary.get().objects }
                }
            """
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
            return ":compileDebugSwift"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

                apply plugin: "cpp-application"
                task unexport(type: UnexportMainSymbol) {
                    outputDirectory = layout.buildDirectory.dir("relocated")
                    objects.from { components.main.developmentBinary.get().objects }
                }
            """
        }
    
        @Override
        protected String getDevelopmentBinaryCompileTask() {
            return ":compileDebugCpp"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top