Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for helloApi (0.14 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.groovy

            app.executable.writeSources(file("src/main"))
    
            app.library.headerFiles*.writeToDir(file("src/helloApi"))
            app.library.sourceFiles*.writeToDir(file("src/hello"))
    
            and:
            buildFile << """
    model {
        components { comp ->
            helloApi(NativeLibrarySpec)
            hello(NativeLibrarySpec) {
                sources {
                    cpp.lib ${notation}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            app.library.headerFiles*.writeToDir(file("src/helloApi"))
            app.library.sourceFiles*.writeToDir(file("src/hello"))
    
            and:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'helloApi', linkage: 'api' // TODO:DAZ This should not be needed
                    cpp.lib library: 'hello'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/web/src/org/example/app/HelloApp.java

    package org.example.app;
    
    import org.example.util.StringUtils;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println(StringUtils.getStandardGreeting());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 204 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/src/org/example/app/HelloApp.java

    package org.example.app;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/antMigration/importBuild/groovy/src/org/example/app/HelloApp.java

    package org.example.app;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 148 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/antMigration/multiProject/kotlin/web/src/org/example/app/HelloApp.java

    package org.example.app;
    
    import org.example.util.StringUtils;
    
    public class HelloApp {
        public static void main(String[] args) {
            System.out.println(StringUtils.getStandardGreeting());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 204 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/libs/our-custom.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.11 Created-By: 9.0.7.1+1 (Azul Systems, Inc.) org/example/app/HelloApp.class package org.example.app; public synchronized class HelloApp { public void HelloApp(); static void main(String[]); }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/libs/our-custom.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.9.11 Created-By: 9.0.7.1+1 (Azul Systems, Inc.) org/example/app/HelloApp.class package org.example.app; public synchronized class HelloApp { public void HelloApp(); static void main(String[]); }...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top