Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 361 for asSnapshot (0.19 sec)

  1. 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)
  2. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

    import org.gradle.internal.file.FileHierarchySet;
    import org.gradle.internal.file.FileMetadata;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshotHierarchyVisitor;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.snapshot.SnapshotVisitResult;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["class A {}"]
            source impl: ["class B { public A a;}"]
            source app: ["class Unrelated {}", "class C { public B b; }"]
            app.snapshot {
                impl.snapshot {
                    run language.compileTaskName
                }
            }
    
            when:
            file("api/src/main/${language.name}/A.${language.name}").delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/LockingInteractionsIntegrationTest.groovy

            '[1.0,)'             | '2.2-SNAPSHOT'
            '+'                  | '2.2-SNAPSHOT'
            'latest.release'     | '2.1'
            'latest.integration' | '2.2-SNAPSHOT'
    
        }
    
        def 'kind of locks snapshots but warns about it'() {
            mavenRepo.module('org', 'bar', '1.0-SNAPSHOT').publish()
            mavenRepo.module('org', 'bar', '1.0-SNAPSHOT').publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

    import org.gradle.internal.snapshot.DirectorySnapshot;
    import org.gradle.internal.snapshot.FileSystemLeafSnapshot;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.MissingFileSnapshot;
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    import org.gradle.internal.snapshot.RelativePathTracker;
    import org.gradle.internal.snapshot.SnapshottingFilter;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryContentFilteringIntegrationTest.groovy

            buildFile << """
                dependencies {
                    conf "org:foo:1.0-SNAPSHOT"
                    conf "org:bar:1.0"
                }
            """
    
            when:
            // looks for the Maven pom file because it's a snapshot
            snapshotModule.metaData.expectGet() // gets the maven-metadata.xml file to get the latest snapshot version
            snapshotModule.pom.expectGet()
            snapshotModule.artifact.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* remove extends */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplB", "ImplB2")
    
            when:
            impl.snapshot()
            source api: ["class A { /* change */ }"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                    merge(SNAPSHOT + key, infos, sv.getUpdated(), sv.getVersion(), repository);
                }
            }
    
            Snapshot snapshot = versioning.getSnapshot();
            if (snapshot != null && versioning.getSnapshotVersions().isEmpty()) {
                String version = artifact.getVersion();
                if (snapshot.getTimestamp() != null && snapshot.getBuildNumber() > 0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  9. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                    merge(SNAPSHOT + key, infos, sv.getUpdated(), sv.getVersion(), repository);
                }
            }
    
            Snapshot snapshot = versioning.getSnapshot();
            if (snapshot != null && versioning.getSnapshotVersions().isEmpty()) {
                String version = artifact.getVersion();
                if (snapshot.getTimestamp() != null && snapshot.getBuildNumber() > 0) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/TarBuildCacheEntryPacker.java

    import org.gradle.internal.snapshot.DirectorySnapshot;
    import org.gradle.internal.snapshot.DirectorySnapshotBuilder;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot.FileSystemLocationSnapshotVisitor;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    import org.gradle.internal.snapshot.MerkleDirectorySnapshotBuilder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:19 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top