Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for snapshotted (0.14 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStepTest.groovy

        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "output file properties are snapshotted as empty"() {
            when:
            step.execute(work, context)
    
            then:
            interaction { snapshotState() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

        def setup() {
            _ * work.inputFingerprinter >> inputFingerprinter
        }
    
        def "output file properties are snapshotted"() {
            def outputSnapshots = ImmutableSortedMap.<String, FileSystemSnapshot>of("outputDir", Mock(FileSystemSnapshot))
    
            when:
            step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        1) All the resource variable reads and writes are now outside of
           tf_device.cluster op.
        2) Instead of taking resource handles as input, this device computation now
           takes snapshotted values of that device.
        3) Some resource load operations are eliminated with store-load forwarding.
        4) Updated values to resource are appended to `tf_device.return` and used by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

            skipped ':compileJava'
    
            when:
            withBuildCache().run 'clean', 'run'
    
            then:
            skipped ':compileJava'
        }
    
        def "outputs loaded from the cache are snapshotted as outputs"() {
            buildFile << """
                apply plugin: 'base'
    
                task createOutput {
                    def outputFile = file('build/output.txt')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/net.go

    		return err
    	}
    	return nil
    }
    
    // syncHostIPSets is called after the host node ipset has been created (or found + flushed)
    // during initial snapshot creation, it will insert every snapshotted pod's IP into the set.
    //
    // The set does not allow dupes (obviously, that would be undefined) - but in the real world due to misconfigured
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. pkg/kubelet/config/config.go

    }
    
    // TODO: PodConfigNotificationMode could be handled by a listener to the updates channel
    // in the future, especially with multiple listeners.
    // TODO: allow initialization of the current state of the store with snapshotted version.
    func newPodStorage(updates chan<- kubetypes.PodUpdate, mode PodConfigNotificationMode, recorder record.EventRecorder, startupSLIObserver podStartupSLIObserver) *podStorage {
    	return &podStorage{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/endpoint_builder.go

    	if len(e.llbEndpoints.LbEndpoints) != len(e.istioEndpoints) {
    		panic(" len(e.llbEndpoints.LbEndpoints) != len(e.tunnelMetadata)")
    	}
    }
    
    // FromServiceEndpoints builds LocalityLbEndpoints from the PushContext's snapshotted ServiceIndex.
    // Used for CDS (ClusterLoadAssignment constructed elsewhere).
    func (b *EndpointBuilder) FromServiceEndpoints() []*endpoint.LocalityLbEndpoints {
    	if b == nil {
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/runtime/trace.go

    	// the thread's seqlock, which one of us must win, so at least its old gen buffer
    	// will be flushed in time for the new generation) or it will have flushed its
    	// buffers before we snapshotted it to begin with.
    	lock(&sched.lock)
    	mToFlush := allm
    	for mp := mToFlush; mp != nil; mp = mp.alllink {
    		mp.trace.link = mp.alllink
    	}
    	for mp := sched.freem; mp != nil; mp = mp.freelink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

    public class DefaultInputFingerprinter implements InputFingerprinter {
    
        private final FileCollectionSnapshotter snapshotter;
        private final FileCollectionFingerprinterRegistry fingerprinterRegistry;
        private final ValueSnapshotter valueSnapshotter;
    
        public DefaultInputFingerprinter(
            FileCollectionSnapshotter snapshotter,
            FileCollectionFingerprinterRegistry fingerprinterRegistry,
            ValueSnapshotter valueSnapshotter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractScalarValueSnapshot.java

        }
    
        public T getValue() {
            return value;
        }
    
        @Override
        public ValueSnapshot snapshot(Object value, ValueSnapshotter snapshotter) {
            if (this.value.equals(value)) {
                return this;
            }
            ValueSnapshot snapshot = snapshotter.snapshot(value);
            if (snapshot.equals(this)) {
                return this;
            }
            return snapshot;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top