Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,474 for tracks (0.24 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/FilteredTrackingMerkleDirectorySnapshotBuilder.java

    import javax.annotation.Nullable;
    import java.util.ArrayDeque;
    import java.util.Deque;
    import java.util.function.Consumer;
    
    /**
     * A {@link DirectorySnapshotBuilder} that tracks whether a directory has been filtered.
     *
     * You can mark a directory as filtered by {@link #markCurrentLevelAsFiltered()}.
     * When you do that, all the parent levels are marked as filtered as well.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/AbstractCachedIndexTest.groovy

            }
        }
    
        @Subject AbstractCachedIndex<String, CachedItem> cachedIndex = new AbstractCachedIndex(CACHE_NAME, STRING_SERIALIZER, valueSerializer, cacheAccessCoordinator, fileAccessTracker) {}
    
        def "tracks access to looked up files"() {
            given:
            def cachedFile = temporaryFolder.createFile("foo.txt")
    
            when:
            cachedIndex.storeInternal("foo", cachedItem(cachedFile))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/flag.go

    	if *v == nil {
    		*v = []string{}
    	}
    	return err
    }
    
    func (v *StringsFlag) String() string {
    	return "<StringsFlag>"
    }
    
    // explicitStringFlag is like a regular string flag, but it also tracks whether
    // the string was set explicitly to a non-empty value.
    type explicitStringFlag struct {
    	value    *string
    	explicit *bool
    }
    
    func (f explicitStringFlag) String() string {
    	if f.value == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/connections.go

    	connections := m.byProxy[k]
    	if connections == nil {
    		connections = make(map[string]connection)
    		m.byProxy[k] = connections
    	}
    	connections[conn.ID()] = conn
    }
    
    // Disconnect tracks disconnect events of ads clients.
    // Returns false once there are no more connections for the given proxy.
    func (m *adsConnections) Disconnect(conn connection) bool {
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

    import org.gradle.api.file.DirectoryProperty;
    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.api.provider.Property;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.OutputDirectory;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.api.tasks.UntrackedTask;
    import org.gradle.process.ExecOperations;
    import org.gradle.process.ExecResult;
    
    import javax.inject.Inject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/context.go

    	"istio.io/istio/pkg/test/util/yml"
    )
    
    // Context is the core context interface that is used by resources.
    type Context interface {
    	yml.FileWriter
    
    	// TrackResource tracks a resource in this context. If the context is closed, then the resource will be
    	// cleaned up.
    	TrackResource(r Resource) ID
    
    	// GetResource accepts either a *T or *[]*T where T implements Resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ProgressOperationsTest.groovy

            then:
            op1.operationId.id == 1L
            op1.parent == null
            op2.operationId.id == 2L
            op2.parent == null
        }
    
        def "tracks progress"() {
            when:
            ops.start("Building", null, new OperationIdentifier(1), null)
            def op2 = ops.start("Resolving", null, new OperationIdentifier(2), new OperationIdentifier(1))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top