Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isSameSnapshot (0.32 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

            ValueSnapshot other = snapshotter.snapshot(value);
            if (this.isSameSnapshot(other)) {
                return this;
            }
            return other;
        }
    
        protected abstract boolean isSameSnapshot(@Nullable Object o);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ClassImplementationSnapshot.java

            hasher.putString(ClassImplementationSnapshot.class.getName());
            hasher.putString(classIdentifier);
            hasher.putHash(classLoaderHash);
        }
    
        @Override
        protected boolean isSameSnapshot(@Nullable Object o) {
            return equals(o);
        }
    
        @Nonnull
        @Override
        public HashCode getClassLoaderHash() {
            return classLoaderHash;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/UnknownImplementationSnapshot.java

        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            throw new UnsupportedOperationException("Cannot hash an unknown implementation " + this);
        }
    
        @Override
        protected boolean isSameSnapshot(@Nullable Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/LambdaImplementationSnapshot.java

        public String getImplMethodSignature() {
            return implMethodSignature;
        }
    
        public int getImplMethodKind() {
            return implMethodKind;
        }
    
        @Override
        protected boolean isSameSnapshot(@Nullable Object o) {
            return equals(o);
        }
    
        @Override
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top