Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getClassIdentifier (0.4 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ImplementationChanges.java

            if (!currentImplementation.getClassIdentifier().equals(previousImplementation.getClassIdentifier())) {
                return visitor.visitChange(new DescriptiveChange("The type of %s has changed from '%s' to '%s'.",
                    executable.getDisplayName(), previousImplementation.getClassIdentifier(), currentImplementation.getClassIdentifier()));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

        }
    
        protected ImplementationSnapshot(String classIdentifier) {
            this.classIdentifier = classIdentifier;
        }
    
        public String getClassIdentifier() {
            return classIdentifier;
        }
    
        @Nullable
        public abstract HashCode getClassLoaderHash();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshotSerializer.java

                }
            };
    
            @Override
            public void write(Encoder encoder, ImplementationSnapshot implementationSnapshot) throws Exception {
                encoder.writeString(implementationSnapshot.getClassIdentifier());
                writeAdditionalData(encoder, implementationSnapshot);
            }
    
            @Override
            public ImplementationSnapshot read(Decoder decoder) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:33:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

        }
    
        @Nullable
        public String getImplementationClassName() {
            return getBeforeExecutionState()
                .map(ExecutionInputState::getImplementation)
                .map(ImplementationSnapshot::getClassIdentifier)
                .orElse(null);
        }
    
        @Nullable
        public List<byte[]> getActionClassLoaderHashesBytes() {
            return getBeforeExecutionState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top