Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OutputProperty (0.81 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultImmutableWorkspaceMetadataStore.java

                    String outputProperty = decoder.readString();
                    int hashCount = decoder.readSmallInt();
                    for (int hashIndex = 0; hashIndex < hashCount; hashIndex++) {
                        HashCode hashCode = hashCodeSerializer.read(decoder);
                        outputPropertyHashes.put(outputProperty, hashCode);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 14:27:26 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            writeProperty(propertyName, propertyValue, PropertyKind.InputProperty)
    
        suspend fun writeOutputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.OutputProperty)
    
        val inputProperties = collectRegisteredInputsOf(task)
        writeCollection(inputProperties) { property ->
            property.run {
                when (this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

        },
        PropertyUsage {
            override fun toString() = "property usage"
        },
        InputProperty {
            override fun toString() = "input property"
        },
        OutputProperty {
            override fun toString() = "output property"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

                case "Task": return trace['path']
                case "Bean": return trace['type']
                case "Field": return trace['name']
                case "InputProperty": return trace['name']
                case "OutputProperty": return trace['name']
                case "BuildLogic": return trace['location'].toString().capitalize()
                case "BuildLogicClass": return trace['type']
                default: return "Gradle runtime"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top