Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for ClassLoaderHierarchyHasher (0.28 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

     * - plugin spec builders for all plugin ids found in the `buildSrc` classpath.
     */
    class Stage1BlocksAccessorClassPathGenerator @Inject internal constructor(
        private val classLoaderHierarchyHasher: ClassLoaderHierarchyHasher,
        private val fileCollectionFactory: FileCollectionFactory,
        private val executionEngine: ExecutionEngine,
        private val inputFingerprinter: InputFingerprinter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ConfigurableClassLoaderHierarchyHasher.java

    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.WeakHashMap;
    
    public class ConfigurableClassLoaderHierarchyHasher implements ClassLoaderHierarchyHasher {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultExecutionHistoryStore.java

    import org.gradle.internal.fingerprint.CurrentFileCollectionFingerprint;
    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.serialize.HashCodeSerializer;
    
    import java.util.Optional;
    import java.util.function.Supplier;
    
    import static com.google.common.collect.ImmutableSortedMap.copyOfSorted;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            return candidate.snapshot(value, this);
        }
    
        private static class ValueSnapshotVisitor implements ValueVisitor<ValueSnapshot> {
            private final ClassLoaderHierarchyHasher classLoaderHasher;
    
            ValueSnapshotVisitor(ClassLoaderHierarchyHasher classLoaderHasher) {
                this.classLoaderHasher = classLoaderHasher;
            }
    
            @Override
            public ValueSnapshot nullValue() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

            }
        }
    
        private static class IsolatableVisitor implements ValueVisitor<Isolatable<?>> {
            private final ClassLoaderHierarchyHasher classLoaderHasher;
            private final ManagedFactoryRegistry managedFactoryRegistry;
    
            IsolatableVisitor(ClassLoaderHierarchyHasher classLoaderHasher, ManagedFactoryRegistry managedFactoryRegistry) {
                this.classLoaderHasher = classLoaderHasher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

        def listenerManager = Stub(ListenerManager)
        def classloaderHierarchyHasher = new ClassLoaderHierarchyHasher() {
            @Override
            HashCode getClassLoaderHash(ClassLoader classLoader) {
                return TestHashCodes.hashCodeFrom(1234)
            }
        }
        def valueSnapshotter = new DefaultValueSnapshotter([], classloaderHierarchyHasher)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/ImplementationChangesTest.groovy

    import org.gradle.api.DefaultTask
    import org.gradle.api.Describable
    import org.gradle.api.Task
    import org.gradle.api.internal.tasks.InputChangesAwareTaskAction
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.TestHashCodes
    import org.gradle.internal.snapshot.impl.ClassImplementationSnapshot
    import org.gradle.internal.snapshot.impl.ImplementationSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStepTest.groovy

    abstract class AbstractCaptureStateBeforeExecutionStepTest<C extends PreviousExecutionContext> extends StepSpec<C> {
    
        def classloaderHierarchyHasher = Mock(ClassLoaderHierarchyHasher)
        def inputFingerprinter = Mock(InputFingerprinter)
        def implementationSnapshot = ImplementationSnapshot.of("MyWorkClass", TestHashCodes.hashCodeFrom(1234))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:34 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ImplementationSnapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.ClassLoaderHierarchyHasher;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.ValueSnapshot;
    import org.gradle.internal.snapshot.ValueSnapshotter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistryTest.groovy

        }
        def domainObjectContext = Mock(DomainObjectContext) {
            getModel() >> RootScriptDomainObjectContext.INSTANCE
        }
    
        def isolatableFactory = new TestIsolatableFactory()
        def classLoaderHierarchyHasher = Mock(ClassLoaderHierarchyHasher)
        def calculatedValueContainerFactory = TestUtil.calculatedValueContainerFactory()
        def attributesFactory = AttributeTestUtil.attributesFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top