Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for classLoaderHash (0.23 sec)

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

            String className = type.getName();
            HashCode classLoaderHash = classLoaderHasher.getClassLoaderHash(type.getClassLoader());
            return of(className, classLoaderHash, isLambdaClass(type), null);
        }
    
        public static ImplementationSnapshot of(String className, @Nullable HashCode classLoaderHash) {
            return of(className, classLoaderHash, isLambdaClassName(className), null);
        }
    
    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-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshotSerializer.java

                protected ImplementationSnapshot readAdditionalData(String classIdentifier, Decoder decoder) throws Exception {
                    HashCode classLoaderHash = hashCodeSerializer.read(decoder);
                    return new ClassImplementationSnapshot(classIdentifier, classLoaderHash);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:33:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

            """
            succeeds('noOutputs', "--build-cache")
    
            then:
            def result = operations.first(SnapshotTaskInputsBuildOperationType).result
            result.hash == null
            result.classLoaderHash == null
            result.actionClassLoaderHashes == null
            result.actionClassNames == null
            result.inputValueHashes == null
            result.outputPropertyNames == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            def projectTransformBuildCacheKey = projectSnapshotExecution.hash as String
            with(projectSnapshotExecution) {
                hash != null
                classLoaderHash != null
                implementationClassName == 'MakeGreen'
                inputValueHashes.keySet() ==~ ['inputArtifactPath', 'inputPropertiesHash']
                outputPropertyNames == ['outputDirectory', 'resultsFile']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

            HashCode classLoaderHash = hasher.getClassLoaderHash(value.getClass().getClassLoader());
            String actionClassIdentifier = ScriptOriginUtil.getOriginClassIdentifier(value);
            return ImplementationSnapshot.of(actionClassIdentifier, value, classLoaderHash);
        }
    
        @Override
        public void setMustRunAfter(final Iterable<?> mustRunAfterTasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top