Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getOtherFile (0.21 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/tasks/SwiftUnexportMainSymbolIntegrationTest.groovy

            final SourceFile sourceFile = new SourceFile("swift", "main.swift", 'print("goodbye world!")')
        }
    
        @Override
        protected SourceFileElement getOtherFile() {
            return new SourceFileElement() {
                final SourceFile sourceFile = new SourceFile("swift", "other.swift", 'class Other {}')
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

                    std::cout << "goodbye world!" << std::endl;
                    return 0;
                }
            """)
        }
    
        @Override
        protected SourceFileElement getOtherFile() {
            return new SourceFileElement() {
                final SourceFile sourceFile = new SourceFile("cpp", "other.cpp", """
                class Other {};
            """)
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/tasks/AbstractUnexportMainSymbolIntegrationTest.groovy

        protected abstract IncrementalElement getComponentUnderTest();
    
        protected abstract SourceElement getComponentWithOtherFileUnderTest();
    
        protected abstract SourceFileElement getOtherFile();
    
        protected abstract SourceFileElement getMainFile(String filenameWithoutExtension = "main")
    
        protected abstract SourceElement getComponentWithoutMainUnderTest()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top