Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 764 for tracks (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultLocalComponentRegistry.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    /**
     * A simple dependency-management scoped wrapper around {@link BuildTreeLocalComponentProvider} that
     * tracks which domain object context makes a given project component request. The primary
     * purpose of this class is to track dependencies between projects as they are resolved. By knowing which
     * project is making the request, we can determine which projects depend on which other projects.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutineTest.kt

    import org.junit.Test
    
    
    class TrackingDynamicLookupRoutineTest {
        @Test
        fun `tracks context in all implementations`() {
            val receiver = mock<DynamicObject> {
                on { tryGetProperty(any()) }.thenReturn(DynamicInvokeResult.found())
            }
    
            fun shouldTrackContext(action: DynamicLookupRoutine.() -> Unit) {
                val tracker = mock<DynamicCallContextTracker>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. pkg/proxy/config/config.go

    	// OnEndpointSlicesSynced is called once all the initial event handlers were
    	// called and the state is fully propagated to local cache.
    	OnEndpointSlicesSynced()
    }
    
    // EndpointSliceConfig tracks a set of endpoints configurations.
    type EndpointSliceConfig struct {
    	listerSynced  cache.InformerSynced
    	eventHandlers []EndpointSliceHandler
    	logger        klog.Logger
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/DefaultDynamicCallProblemReportingTest.kt

    import org.junit.Test
    import java.util.Collections
    import java.util.concurrent.CountDownLatch
    import kotlin.concurrent.thread
    
    
    class DefaultDynamicCallProblemReportingTest {
        @Test
        fun `tracks unreported problems in nested dynamic calls`() {
            val reporting = DefaultDynamicCallProblemReporting()
            val entryPoint1 = Any()
            val entryPoint2 = Any()
            val key1 = Any()
            val key2 = Any()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

        // Whether a previous access of this resource already tracks the last
        // unknown read(s).
        bool are_last_unknown_reads_tracked = false;
        // Whether a previous write access of this resource already tracks the last
        // unknown write.
        bool is_last_unknown_write_tracked_by_write = false;
        // Whether a previous read or write access of this resource already tracks
        // the last unknown write.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pkg/kubelet/config/sources.go

    	"sync"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // SourcesReadyFn is function that returns true if the specified sources have been seen.
    type SourcesReadyFn func(sourcesSeen sets.Set[string]) bool
    
    // SourcesReady tracks the set of configured sources seen by the kubelet.
    type SourcesReady interface {
    	// AddSource adds the specified source to the set of sources managed.
    	AddSource(source string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemDiagnosticsFactoryTest.groovy

            1 * userCodeContext.current() >> Mock(UserCodeApplicationContext.Application) {
                getSource() >> currentSource
            }
        }
    
        void assertIsCallerStackTrace(List<StackTraceElement> trace) {
            assert trace.any { it.className == DefaultProblemDiagnosticsFactoryTest.name }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. architecture/README.md

    See [Gradle runtimes](runtimes.md) for a list of these runtimes and more details.
    
    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Gradle tracks the state of each piece and transitions each piece through its lifecycle as the build runs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compilation_profiler.h

    #include <cstdint>
    #include <string>
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    
    namespace tensorflow {
    
    // Tracks statistics for device compilation and uses these to determine whether
    // the given cluster should be compiled or not.
    class DeviceCompilationProfiler : public ResourceBase {
     public:
      DeviceCompilationProfiler() = default;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

                buildCacheKey == thirdBuildCacheKey
            }
        }
    
        def "tracks different tasks"() {
            given:
            buildScript """
                def w1 = tasks.create("w1", WriteProperties) {
                    destinationFile = file("w1.properties")
                    properties = [v: 1]
                }
                def w2 = tasks.create("w2", WriteProperties) {
                    destinationFile = file("w2.properties")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top