Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getBrokenFile (0.22 sec)

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

        public abstract String getAlternateOutput();
    
        public abstract List<SourceFile> getAlternateLibrarySources();
        public abstract String getAlternateLibraryOutput();
    
        public abstract SourceFile getBrokenFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.groovy

                        }
                    }
                }
            """
        }
    
        @Override
        List<String> getPluginList() {
            ['objective-c']
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("objc", "broken.m", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "ObjectiveCSourceSet"
        }
    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/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

                   tests      1      1      1      0        0
                 asserts      3      3      3      0      n/a
    """
            }
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("c", "broken.c", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "CSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCppHelloWorldApp.groovy

                        }
                    }
                }
            """
        }
    
        @Override
        List<String> getPluginList() {
            ['objective-cpp']
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("objcpp", "broken.mm", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "ObjectiveCppSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppHelloWorldApp.groovy

      if (sum(2, 2) == 4) {
        return 0;
      }
      return -1;
    }"""),
                ]
                List<SourceFile> headerFiles = [
                ]
            }
        }
    
        SourceFile getBrokenFile() {
            return sourceFile("cpp", "broken.cpp", """'broken""")
        }
    
        @Override
        String getSourceSetType() {
            return "CppSourceSet"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top