Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,472 for asSnapshot (0.42 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFingerprintingStrategy.java

                @Override
                public void visitAcceptedEntry(FileSystemLocationSnapshot snapshot, boolean isRoot) {
                    String absolutePath = snapshot.getAbsolutePath();
                    if (getDirectorySensitivity().shouldFingerprint(snapshot)) {
                        HashCode normalizedContentHash = getNormalizedContentHash(snapshot, normalizedContentHasher);
                        if (normalizedContentHash != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-fork</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/FileSystemSnapshotFilterTest.groovy

    import org.gradle.internal.snapshot.DirectorySnapshot
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot
    import org.gradle.internal.snapshot.FileSystemSnapshot
    import org.gradle.internal.snapshot.FileSystemSnapshotHierarchyVisitor
    import org.gradle.internal.snapshot.RegularFileSnapshot
    import org.gradle.internal.snapshot.SnapshotVisitResult
    import org.gradle.internal.snapshot.SnapshottingFilter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/cache/cache.go

    func (cache *cacheImpl) updateNodeInfoSnapshotList(logger klog.Logger, snapshot *Snapshot, updateAll bool) {
    	snapshot.havePodsWithAffinityNodeInfoList = make([]*framework.NodeInfo, 0, cache.nodeTree.numNodes)
    	snapshot.havePodsWithRequiredAntiAffinityNodeInfoList = make([]*framework.NodeInfo, 0, cache.nodeTree.numNodes)
    	snapshot.usedPVCSet = sets.New[string]()
    	if updateAll {
    		// Take a snapshot of the nodes order in the tree
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  5. .teamcity/src/test/kotlin/PromotionProjectTests.kt

            assertEquals(10, model.buildTypes.size)
            assertEquals(
                listOf("SanityCheck", "Nightly Snapshot", "Nightly Snapshot (from QuickFeedback)", "Nightly Snapshot (from QuickFeedback) - Check Ready", "Nightly Snapshot (from QuickFeedback) - Upload", "Nightly Snapshot (from QuickFeedback) - Promote", "Publish Branch Snapshot (from Quick Feedback)", "Release - Milestone", "Start Release Cycle", "Start Release Cycle Test"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/cache/internal/VersionSpecificCacheCleanupActionTest.groovy

            1 * progressMonitor.incrementDeleted()
            snapshot.assertDoesNotExist()
            release.assertExists()
        }
    
        def "deletes caches of snapshot versions not used within 7 days if there's a cache for a later snapshot version with same base version"() {
            given:
            def snapshot = createVersionSpecificCacheDir(GradleVersion.version("4.8-20180417000132+0000"), NOT_USED_WITHIN_7_DAYS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 17:27:30 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

    import org.gradle.internal.snapshot.CompositeFileSystemSnapshot;
    import org.gradle.internal.snapshot.DirectorySnapshot;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.PathUtil;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-management-duplicate/sub/pom.xml

      <artifactId>test2</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <build>
         <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
            </plugin>
            <plugin>
              <artifactId>maven-jar-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
            </plugin>
            <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/MissingRootAndDuplicateIgnoringFileSystemSnapshotVisitor.java

        @Override
        public final SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot, boolean isRoot) {
            if (!(snapshot.getType() == FileType.Missing && isRoot) && processedEntries.add(snapshot.getAbsolutePath())) {
                visitAcceptedEntry(snapshot, isRoot);
            }
            return SnapshotVisitResult.CONTINUE;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/source/NoOpLoggingSystem.java

        @Override
        public Snapshot snapshot() {
            return dummy();
        }
    
        @Override
        public Snapshot setLevel(LogLevel logLevel) {
            return dummy();
        }
    
        @Override
        public Snapshot startCapture() {
            return dummy();
        }
    
        @Override
        public void restore(Snapshot state) {}
    
        private Snapshot dummy() {
            return new Snapshot() {};
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top