Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CppMain (0.12 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppMain.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    class CppMain extends SourceFileElement implements AppElement {
        final GreeterElement greeter
        final SumElement sum
    
        CppMain(GreeterElement greeter, SumElement sum) {
            this.greeter = greeter
            this.sum = sum
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleLinkOutputAppWithLib.groovy

        }
    
        class IncrementalCppAppWithDep extends IncrementalCppElement implements AppElement {
            final CppMain main
    
            IncrementalCppAppWithDep(IncrementalCppLib library) {
                main = new CppMain(library.greeter, library.sum)
            }
    
            @Override
            final List<IncrementalElement.Transform> getIncrementalChanges() {
                [delete(main)]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppApp.groovy

    /**
     * A single project C++ app, with several source files.
     */
    class CppApp extends CppSourceElement implements AppElement {
        final greeter = new CppGreeter()
        final sum = new CppSum()
        final main = new CppMain(greeter, sum)
    
        @Override
        SourceElement getSources() {
            return ofElements(main, greeter.sources, sum.sources)
        }
    
        @Override
        SourceElement getHeaders() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleLinkOutputApp.groovy

     */
    class IncrementalCppStaleLinkOutputApp extends IncrementalCppElement implements AppElement {
        private final greeter = new CppGreeter()
        private final sum = new CppSum()
        private final main = new CppMain(greeter, sum)
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            delete(greeter), delete(sum), delete(main)]
        final String expectedOutput = main.expectedOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppStaleCompileOutputApp.groovy

    class IncrementalCppStaleCompileOutputApp extends IncrementalCppApp {
        private final greeter = new CppGreeter()
        private final sum = new CppSum()
        private final multiply = new CppMultiply()
        private final main = new CppMain(greeter, sum)
    
        final List<IncrementalElement.Transform> incrementalChanges = [
            preserve(greeter),
            rename(sum),
            delete(multiply),
            preserve(main)
        ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/runtime/debug/example_monitor_test.go

    	//
    	//    $ go test -run=ExampleSetCrashOutput_monitor runtime/debug
    	//    panic: oops
    	//    ...stack...
    	//    monitor: saved crash report at /tmp/10804884239807998216.crash
    }
    
    // appmain represents the 'main' function of your application.
    func appmain() {
    	monitor()
    
    	// Run the application.
    	println("hello")
    	panic("oops")
    }
    
    // monitor starts the monitor process, which performs automated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecMainClassIntegrationTest.groovy

            then:
            outputContains 'it works!'
            configurationCache.assertStateStored()
    
            when:
            originalMain.delete()
            writeMainClass 'AppMain', 'it certainly does!'
            succeeds 'run', '--configuration-cache'
    
            then:
            outputContains 'it certainly does!'
            configurationCache.assertStateLoaded()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. test-site/activator-launch-1.3.2.jar

    public abstract ApplicationID id(); public abstract ClassLoader loader(); public abstract Class mainClass(); public abstract Class entryPoint(); public abstract AppMain newMain(); public abstract java.io.File[] mainClasspath(); public abstract ComponentProvider components(); } xsbti/AppMain.class package xsbti; public abstract interface AppMain { public abstract MainResult run(AppConfiguration); } xsbti/ApplicationID.class package xsbti; public abstract interface ApplicationID { public abstract String...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
Back to top