Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for inputPaths (0.13 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXShellScriptBuildPhase.java

            super.serializeInto(s);
    
            NSArray inputPathsArray = new NSArray(inputPaths.size());
            for (int i = 0; i < inputPaths.size(); i++) {
                inputPathsArray.setValue(i, new NSString(inputPaths.get(i)));
            }
            s.addField("inputPaths", inputPathsArray);
    
            NSArray outputPathsArray = new NSArray(outputPaths.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

            assert !original.inputs.isEmpty()
            def changedInputs = inputs*.absolutePath
    
            original.inputs.each { String inputPath, List timestamp ->
                List currentTimestamp = current.inputs.get(inputPath)
                if (inputPath in changedInputs) {
                    changedInputs.remove(inputPath)
                    assert currentTimestamp == SwiftDepsHandler.RESET_TIMESTAMP
                } else {
    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/core-configuration/model-core/src/testFixtures/groovy/org/gradle/model/internal/fixture/ModelRegistryHelperExtension.java

        }
    
        public static <C> ModelRegistration unmanaged(ModelRegistrations.Builder builder, ModelType<C> modelType, String inputPath, Transformer<? extends C, Object> action) {
            return unmanaged(builder, modelType, inputPath, inputPath, action);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

                    void doWork() {
                        println $inputToPrint
                    }
                }
                tasks.register("printFile", FilePrinter) {
                    input = file("$inputPath")
                    outputFile = layout.buildDirectory.file("output/output.txt")
                }
            """
            def inputFile = file("input/input.txt")
            inputFile.text = "[0] Hello World!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                }
            """
    
            file("input").createDir()
            def inputPath = file('input').absolutePath
    
            expect:
            fails("myTask")
            failureHasCause("Multiple entries with same value: inputTwo=$inputPath and inputOne=$inputPath")
        }
    
        def "two incremental file properties can point to the same file"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
Back to top