Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 361 for asSnapshot (0.2 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

            // Here, we need to determine which policy to use. Release updateInterval will be used when
            // the metadata refers to a release artifact or meta-version, and snapshot updateInterval will be used when
            // it refers to a snapshot artifact or meta-version.
            // NOTE: Release metadata includes version information about artifacts that have been released, to allow
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

            )
            newChild.snapshot.get().type == FileType.Directory
    
            addedNodes == [newGrandChild]
            removedNodes.empty
    
            1 * snapshot.asFileSystemNode() >> newGrandChild
            _ * newGrandChild.snapshot >> Optional.of(snapshot)
            _ * selectedChild.snapshot >> Optional.empty()
            1 * snapshot.type >> fileType
            interaction { noMoreInteractions() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

    import org.gradle.internal.snapshot.DirectorySnapshot
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot
    import org.gradle.internal.snapshot.MissingFileSnapshot
    import org.gradle.internal.snapshot.RegularFileSnapshot
    import org.gradle.internal.snapshot.SnapshotUtil
    import org.gradle.internal.snapshot.SnapshotVisitorUtil
    import org.gradle.internal.snapshot.SnapshottingFilter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultFileSystemAccessTest.groovy

            snapshot = read(someFile)
            then:
            assertIsMissingFileSnapshot(snapshot, someFile)
    
            def missingSubfile = someFile.file("subfile")
            when:
            snapshot = read(missingSubfile)
            then:
            assertIsMissingFileSnapshot(snapshot, missingSubfile)
    
            when:
            allowFileSystemAccess(true)
            snapshot = read(regularParent)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            final LoggingSystem.Snapshot stdOutSnapshot = Mock(LoggingSystem.Snapshot.class)
            final LoggingSystem.Snapshot stdErrSnapshot = Mock(LoggingSystem.Snapshot.class)
    
            when:
            loggingManager.start()
    
            then:
            1 * stdOutLoggingSystem.snapshot() >> stdOutSnapshot
            1 * stdErrLoggingSystem.snapshot() >> stdErrSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/SnapshotSerializer.java

        }
    
        @Override
        public void write(Encoder encoder, ValueSnapshot snapshot) throws Exception {
            if (snapshot == NullValueSnapshot.INSTANCE) {
                encoder.writeSmallInt(NULL_SNAPSHOT);
            } else if (snapshot instanceof StringValueSnapshot) {
                StringValueSnapshot stringSnapshot = (StringValueSnapshot) snapshot;
                encoder.writeSmallInt(STRING_SNAPSHOT);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            run 'retrieve'
    
            then: "Snapshots are downloaded"
            file('libs').assertHasDescendants('projectA-1.0-SNAPSHOT.jar', 'projectB-1.0-SNAPSHOT.jar')
            def snapshotA = file('libs/projectA-1.0-SNAPSHOT.jar').snapshot()
            def snapshotB = file('libs/projectB-1.0-SNAPSHOT.jar').snapshot()
    
            when: "We resolve with snapshots cached: no server requests"
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/OutputSnapshotUtil.java

    import com.google.common.collect.Maps;
    import org.gradle.internal.snapshot.CompositeFileSystemSnapshot;
    import org.gradle.internal.snapshot.DirectorySnapshot;
    import org.gradle.internal.snapshot.DirectorySnapshotBuilder;
    import org.gradle.internal.snapshot.DirectorySnapshotBuilder.EmptyDirectoryHandlingStrategy;
    import org.gradle.internal.snapshot.FileSystemLeafSnapshot;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            renderer.enableUserStandardOutputListeners()
            renderer.addStandardOutputListener(listener)
            renderer.configure(LogLevel.INFO)
            def snapshot = renderer.snapshot()
            renderer.configure(LogLevel.DEBUG)
    
            when:
            renderer.restore(snapshot)
            renderer.onOutput(event('info', LogLevel.INFO))
            renderer.onOutput(event('debug', LogLevel.DEBUG))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.SnapshottingFilter;
    import org.gradle.internal.snapshot.impl.DirectorySnapshotter;
    import org.gradle.internal.snapshot.impl.DirectorySnapshotterStatistics;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top