Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NativeLibraryBinarySpec (0.46 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeLibraryBinarySpec.java

    import org.gradle.api.Incubating;
    import org.gradle.platform.base.LibraryBinarySpec;
    
    /**
     * Represents a binary artifact that is the result of building a native library component.
     */
    @Incubating
    public interface NativeLibraryBinarySpec extends NativeBinarySpec, LibraryBinarySpec {
        /**
         * {@inheritDoc}
         */
        @Override
        NativeLibrarySpec getComponent();
    
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.NativeLibraryBinarySpec.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/SharedLibraryBinarySpec.java

    import org.gradle.platform.base.BinaryTasksCollection;
    
    import java.io.File;
    
    /**
     * A shared library binary built by Gradle for a native library.
     */
    @Incubating
    public interface SharedLibraryBinarySpec extends NativeLibraryBinarySpec {
        /**
         * Provides access to key tasks used for building the binary.
         */
        interface TasksCollection extends BinaryTasksCollection {
            /**
             * Returns the link task for this binary.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/StaticLibraryBinarySpec.java

    import org.gradle.platform.base.BinaryTasksCollection;
    
    import java.io.File;
    
    /**
     * A static library binary built by Gradle for a native library.
     */
    @Incubating
    public interface StaticLibraryBinarySpec extends NativeLibraryBinarySpec {
        /**
         * Provides access to key tasks used for building the binary.
         */
        interface TasksCollection extends BinaryTasksCollection {
            /**
             * The create static library task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.nativeplatform.NativeLibraryBinarySpec.getComponent()> does not have raw return type assignable to org.gradle.api.provider.Provider in (NativeLibraryBinarySpec.java:0)
    Method <org.gradle.nativeplatform.NativeLibraryBinarySpec.getComponent()> does not have raw return type assignable to org.gradle.api.provider.Provider in (NativeLibraryBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.NativeExecutableBinarySpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.NativeLibraryBinarySpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.SharedLibraryBinarySpec</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
Back to top