Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,474 for tracks (0.16 sec)

  1. pkg/kubelet/volumemanager/volume_manager_fake.go

    	v1 "k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    // FakeVolumeManager is a test implementation that just tracks calls
    type FakeVolumeManager struct {
    	volumes       map[v1.UniqueVolumeName]bool
    	reportedInUse map[v1.UniqueVolumeName]bool
    }
    
    // NewFakeVolumeManager creates a new VolumeManager test instance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSource.java

        private static final Spec<ValuePointer<?>> NO_DUPLICATES = pointer -> !pointer.getElement().isDuplicate(pointer.getIndex());
    
        /**
         * Tracks the subset of values added with add() (without a Provider), allowing us to filter out duplicates
         * from that subset in constant time.
         */
        private final Set<T> nonProvidedValues = new HashSet<>();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting.go

    	promiseifc "k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise"
    )
    
    // countingPromise implements the WriteOnce interface.
    // This implementation is based on a condition variable.
    // This implementation tracks active goroutines:
    // the given counter is decremented for a goroutine waiting for this
    // varible to be set and incremented when such a goroutine is
    // unblocked.
    type countingPromise struct {
    	lock          sync.Locker
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultProviderFactoryTest.groovy

            when:
            def zipped = providerFactory.zip(a, b) { x, y -> x.length() + y }
    
            then:
            zipped instanceof Provider
            zipped.get() == 126
        }
    
        def "zip tracks task dependencies"() {
            def task1 = Stub(Task)
            def a = withProducer(Integer, task1, 5)
            def task2 = Stub(Task)
            def b = withProducer(String, task2, "Hello")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistryTest.groovy

     */
    
    package org.gradle.buildinit.plugins.internal
    
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class VersionCatalogDependencyRegistryTest extends Specification {
    
        def "tracks library versions"() {
            setup:
            def registry = new VersionCatalogDependencyRegistry(true)
    
            when:
            registry.registerLibrary("group:artifact", "1.1")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    // NewRecorder wraps an Interface and records any changes sent across it.
    func NewRecorder(w Interface) *Recorder {
    	r := &Recorder{}
    	r.Interface = Filter(w, r.record)
    	return r
    }
    
    // record is a FilterFunc and tracks each received event.
    func (r *Recorder) record(in Event) (Event, bool) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	r.events = append(r.events, in)
    	return in, true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/analysis/analyzers/deprecation/deprecation.go

    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // FieldAnalyzer checks for deprecated Istio types and fields
    type FieldAnalyzer struct{}
    
    // Tracks Istio CRDs removed from manifests/charts/base/crds/crd-all.gen.yaml
    var deprecatedCRDs = []k8sext.CustomResourceDefinitionSpec{
    	{
    		Group: "rbac.istio.io",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 02 20:50:14 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformErrorHandler.java

     * }
     *
     * public void transformFailed(String className, Throwable th) {
     *     handler.classLoadingError(className, th);
     * }
     * </code>
     * </pre>
     * <p>
     * This class is thread-safe, though it only tracks pending exceptions per-thread.
     */
    public class TransformErrorHandler {
        @SuppressWarnings("ThreadLocalUsage")
        private final ThreadLocal<ClassNotFoundException> lastError = new ThreadLocal<ClassNotFoundException>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top