Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 119 for tracking (0.17 sec)

  1. .teamcity/test-buckets.json

    					"logging-api",
    					"kotlin-dsl-plugins",
    					"serialization",
    					"toolchains-jvm-shared",
    					"docs-asciidoctor-extensions-base",
    					"internal-instrumentation-processor",
    					"security",
    					"input-tracking",
    					"base-ide-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"testing-jvm",
    					"worker-main",
    					"files",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	// A TTLCache of pod creates/deletes each rc expects to see
    	expectations controller.ControllerExpectationsInterface
    
    	// finalizerExpectations tracks the Pod UIDs for which the controller
    	// expects to observe the tracking finalizer removed.
    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    	// A store of pods, populated by the podController
    	podStore corelisters.PodLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	}
    
    	for description, csiDriver := range map[string]*storagev1.CSIDriver{
    		"no CSIDriver":                        nil,
    		"CSIDriver with capacity tracking":    makeCSIDriver(provisioner, true),
    		"CSIDriver without capacity tracking": makeCSIDriver(provisioner, false),
    	} {
    		t.Run(description, func(t *testing.T) {
    			for name, scenario := range scenarios {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais2.go

    func expand_8_64(text []byte, freq, bucket, sa []int64, numLMS int) {
    	bucketMax_8_64(text, freq, bucket)
    	bucket = bucket[:256] // eliminate bound check for bucket[c] below
    
    	// Loop backward through sa, always tracking
    	// the next index to populate from sa[:numLMS].
    	// When we get to one, populate it.
    	// Zero the rest of the slots; they have dead values in them.
    	x := numLMS - 1
    	saX := sa[x]
    	c := text[saX]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    			// The result is OR'd so we don't overwrite a previously true value
    			// localMatch is tracking the match found within this iteration of the loop
    			localMatch := svcHost.Matches(hostname)
    			// foundSvcMatch is tracking in the wider context whether or not ANY match was found during an iteration
    			foundSvcMatch = foundSvcMatch || localMatch
    			if !localMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    	// entered mark assist from the perspective of the tracer.
    	//
    	// In the tracer, this is just before we call gcAssistAlloc1
    	// *regardless* of whether tracing is enabled. This is because
    	// the tracer allows for tracing to begin (and advance
    	// generations) in the middle of a GC mark phase, so we need to
    	// record some state so that the tracer can pick it up to ensure
    	// a consistent trace result.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    		return x.Type.Size() == 4 && (x.Type.IsUnsigned() || x.Block.Func.Config.arch == "amd64")
    	case OpPhi, OpSelect0, OpSelect1:
    		// Phis can use each-other as an arguments, instead of tracking visited values,
    		// just limit recursion depth.
    		if depth <= 0 {
    			return false
    		}
    		for i := range x.Args {
    			if !zeroUpper32Bits(x.Args[i], depth-1) {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    --
    For tracking the implementation of tasks, task actions and nested inputs, Gradle uses the class name and an identifier for the classpath which contains the implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    }
    
    const (
    	// _KindSpecialFinalizer is for tracking finalizers.
    	_KindSpecialFinalizer = 1
    	// _KindSpecialWeakHandle is used for creating weak pointers.
    	_KindSpecialWeakHandle = 2
    	// _KindSpecialProfile is for memory profiling.
    	_KindSpecialProfile = 3
    	// _KindSpecialReachable is a special used for tracking
    	// reachability during testing.
    	_KindSpecialReachable = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	if p.numRunes > maxRunes {
    		panic(ErrLarge)
    	}
    	p.checkSize(re)
    	p.checkHeight(re)
    }
    
    func (p *parser) checkSize(re *Regexp) {
    	if p.size == nil {
    		// We haven't started tracking size yet.
    		// Do a relatively cheap check to see if we need to start.
    		// Maintain the product of all the repeats we've seen
    		// and don't track if the total number of regexp nodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top