Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SwiftDepsHandler (0.14 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

     *
     * If we have any issues reading or writing the swiftdeps file, we bail out and disable incremental compilation.
     */
    @SuppressWarnings("rawtypes")
    class SwiftDepsHandler {
        private static final Logger LOGGER = LoggerFactory.getLogger(SwiftDepsHandler.class);
        static final List RESET_TIMESTAMP = Arrays.asList(0L, 0L);
    
        SwiftDeps parse(File moduleSwiftDeps) throws FileNotFoundException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

        File moduleSwiftDeps
        File barSource
        File fooSource
        File mainSource
        File unknownSource
    
        SwiftDepsHandler.SwiftDeps original
    
        @Subject
        def swiftDepsHandler = new SwiftDepsHandler()
    
        def setup() {
            moduleSwiftDeps = tmpDir.file("module.swiftdeps")
            barSource = tmpDir.file("src/bar.swift").touch()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

        private final CompilerOutputFileNamingSchemeFactory compilerOutputFileNamingSchemeFactory;
        private final String objectFileExtension;
        private final VersionNumber swiftCompilerVersion;
        private final SwiftDepsHandler swiftDepsHandler;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.toolchain.internal.swift.SwiftDepsHandler$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SwiftDepsHandler.java:0)
    Class <org.gradle.nativeplatform.toolchain.internal.swift.SwiftDepsHandler$SwiftDeps> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SwiftDepsHandler.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top