Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AttributeDefinitionSnapshot (0.18 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

            @Override
            protected void serialize(Encoder encoder, AttributeDefinitionSnapshot value) throws Exception {
                encoder.writeString(value.getValue().getType().getName());
                encoder.writeString(value.getValue().getName());
            }
    
            @Override
            protected AttributeDefinitionSnapshot deserialize(Decoder decoder) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SnapshotSerializer.java

                implementationSnapshotSerializer.write(encoder, implementationSnapshot);
            } else if (snapshot instanceof AttributeDefinitionSnapshot) {
                AttributeDefinitionSnapshot valueSnapshot = (AttributeDefinitionSnapshot) snapshot;
                encoder.writeSmallInt(ATTRIBUTE);
                encoder.writeString(valueSnapshot.getValue().getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top