Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,474 for tracks (0.18 sec)

  1. src/reflect/deepequal.go

    )
    
    // During deepValueEqual, must keep track of checks that are
    // in progress. The comparison algorithm assumes that all
    // checks in progress are true when it reencounters them.
    // Visited comparisons are stored in a map indexed by visit.
    type visit struct {
    	a1  unsafe.Pointer
    	a2  unsafe.Pointer
    	typ Type
    }
    
    // Tests for deep equality using reflected types. The map argument tracks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

            where:
            renderText << [false, true]
        }
    
        def "zip tracks task dependencies"() {
            buildFile << """
                tasks.register('myTask1', MyTask) {
                    text.set('Hello')
                }
                tasks.register('myTask2', MyTask) {
                    text.set('World')
                }
    
                tasks.register('combined', MyTask) {
                    text.set(providers.zip(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	index int
    
    	// seatsInUse is the total number of "seats" currently occupied
    	// by all the requests that are currently executing in this queue.
    	seatsInUse int
    }
    
    // queueSum tracks the sum of initial seats, max seats, and
    // totalWork from all requests in a given queue
    type queueSum struct {
    	// InitialSeatsSum is the sum of InitialSeats
    	// associated with all requests in a given queue.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. src/go/types/labels.go

    	for name, obj := range all.elems {
    		obj = resolve(name, obj)
    		if lbl := obj.(*Label); !lbl.used {
    			check.softErrorf(lbl, UnusedLabel, "label %s declared and not used", lbl.name)
    		}
    	}
    }
    
    // A block tracks label declarations in a block and its enclosing blocks.
    type block struct {
    	parent *block                      // enclosing block
    	lstmt  *ast.LabeledStmt            // labeled statement to which this block belongs, or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/labels.go

    	for name, obj := range all.elems {
    		obj = resolve(name, obj)
    		if lbl := obj.(*Label); !lbl.used {
    			check.softErrorf(lbl.pos, UnusedLabel, "label %s declared and not used", lbl.name)
    		}
    	}
    }
    
    // A block tracks label declarations in a block and its enclosing blocks.
    type block struct {
    	parent *block                         // enclosing block
    	lstmt  *syntax.LabeledStmt            // labeled statement to which this block belongs, or nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    func (p *pvcEvaluator) Constraints(required []corev1.ResourceName, item runtime.Object) error {
    	// no-op for persistent volume claims
    	return nil
    }
    
    // GroupResource that this evaluator tracks
    func (p *pvcEvaluator) GroupResource() schema.GroupResource {
    	return corev1.SchemeGroupVersion.WithResource("persistentvolumeclaims").GroupResource()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  7. pkg/kube/informerfactory/factory.go

    	// startedInformers is used for tracking which informers have been started.
    	// This allows Start() to be called multiple times safely.
    	startedInformers sets.Set[informerKey]
    
    	// wg tracks how many goroutines were started.
    	wg sync.WaitGroup
    	// shuttingDown is true when Shutdown has been called. It may still be running
    	// because it needs to wait for goroutines.
    	shuttingDown bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * provider's value will be returned as the value of the property (when queried).
         *
         * <p>
         * The property's convention tracks the convention provider. Whenever the convention's actual value is
         * needed, the convention provider will be queried anew.
         * </p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/go/types/methodset.go

    	if isPtr && IsInterface(typ) {
    		return &emptyMethodSet
    	}
    
    	// Start with typ as single entry at shallowest depth.
    	current := []embeddedType{{typ, nil, isPtr, false}}
    
    	// seen tracks named types that we have seen already, allocated lazily.
    	// Used to avoid endless searches in case of recursive types.
    	//
    	// We must use a lookup on identity rather than a simple map[*Named]bool as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"verb", "group", "version", "resource", "subresource", "scope"},
    	)
    
    	// requestPostTimeoutTotal tracks the activity of the executing request handler after the associated request
    	// has been timed out by the apiserver.
    	// source: the name of the handler that is recording this metric. Currently, we have two:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
Back to top