Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for swiftdeps (0.39 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

            def swiftDeps = swiftDepsHandler.parse(moduleSwiftDeps)
            assertNothingChanged(swiftDeps)
        }
    
        def "adjusts only provided files"() {
            expect:
            swiftDepsHandler.adjustTimestampsFor(moduleSwiftDeps, [barSource])
            def swiftDeps = swiftDepsHandler.parse(moduleSwiftDeps)
            assertFileHasResetTimestamp(swiftDeps, barSource)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

            // Update any previously known files with a bogus timestamp to force a rebuild
    
            for (File changedSource : changedSources) {
                if (swiftDeps.inputs.containsKey(changedSource.getAbsolutePath())) {
                    swiftDeps.inputs.put(changedSource.getAbsolutePath(), RESET_TIMESTAMP);
                }
            }
        }
    
        private void write(File moduleSwiftDeps, final SwiftDeps swiftDeps) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            }
            if (toolChain.version >= VersionNumber.parse("4.2")) {
                result.add("module.swiftdeps~moduleonly")
            }
    
            result.add("module.swiftdeps")
            result.add("output-file-map.json")
            return result
        }
    
        def swiftmoduleFileFor(File sourceFile, String intermediateFilesDir = "build/obj/main/debug") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftCompiler.java

                    buildQueue.setLogLocation(spec.getOperationLogger().getLogLocation());
    
                    OutputFileMap outputFileMap = new OutputFileMap();
    
                    File moduleSwiftDeps = new File(objectDir, "module.swiftdeps");
                    outputFileMap.root().swiftDependenciesFile(moduleSwiftDeps);
    
                    for (File sourceFile : spec.getSourceFiles()) {
                        outputFileMap.newEntry(sourceFile.getAbsolutePath())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    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)
  6. src/testdata/Isaac.Newton-Opticks.txt

    great, it may suffice to impel Bodies from the denser parts of the
    Medium towards the rarer, with all that power which we call Gravity. And
    that the elastick force of this Medium is exceeding great, may be
    gather'd from the swiftness of its Vibrations. Sounds move about 1140
    _English_ Feet in a second Minute of Time, and in seven or eight Minutes
    of Time they move about one hundred _English_ Miles. Light moves from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    this Medium be exceeding great, it may suffice to impel Bodies from the denser parts of the Medium towards the rarer, with all that power which we call Gravity. And that the elastick force of this Medium is exceeding great, may be gather'd from the swiftness of its Vibrations. Sounds move about 1140 _English_ Feet in a second Minute of Time, and in seven or eight Minutes of Time they move about one hundred _English_ Miles. Light moves from the Sun to us in about seven or eight Minutes of Time, which...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top