Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,474 for tracks (0.29 sec)

  1. src/internal/trace/traceviewer/static/trace_viewer_full.html

    x.start;},worldX,worldMaxDist);if(!instantEvent)return;selection.push(instantEvent);}};return{Track,};});'use strict';tr.exportTo('tr.ui.tracks',function(){const SelectionState=tr.model.SelectionState;const EventPresenter=tr.ui.b.EventPresenter;const ObjectInstanceTrack=tr.ui.b.define('object-instance-track',tr.ui.tracks.Track);ObjectInstanceTrack.prototype={__proto__:tr.ui.tracks.Track.prototype,decorate(viewport){tr.ui.tracks.Track.prototype.decorate.call(this,viewport);Polymer.dom(this).classList.add('object...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
  2. pkg/istio-agent/health/health_check.go

    	if w == nil {
    		return
    	}
    
    	healthCheckLog.Infof("starting health check for %T in %v", w.prober, w.config.InitialDelay)
    	// delay before starting probes.
    	time.Sleep(w.config.InitialDelay)
    
    	// tracks number of success & failures after last success/failure
    	numSuccess, numFail := 0, 0
    	// if the last send/event was a success, this is true, by default false because we want to
    	// first send a healthy message.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/internal/src/xpos.go

    	}
    	return p.lico.lineNumberHTML()
    }
    
    // AtColumn1 returns the same location but shifted to column 1.
    func (p XPos) AtColumn1() XPos {
    	p.lico = p.lico.atColumn1()
    	return p
    }
    
    // A PosTable tracks Pos -> XPos conversions and vice versa.
    // Its zero value is a ready-to-use PosTable.
    type PosTable struct {
    	baseList []*PosBase
    	indexMap map[*PosBase]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness.go

    type PriorityAndFairnessClassification struct {
    	FlowSchemaName    string
    	FlowSchemaUID     apitypes.UID
    	PriorityLevelName string
    	PriorityLevelUID  apitypes.UID
    }
    
    // waitingMark tracks requests waiting rather than being executed
    var waitingMark = &requestWatermark{
    	phase: epmetrics.WaitingPhase,
    }
    
    var atomicMutatingExecuting, atomicReadOnlyExecuting int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

                    throw UncheckedException.throwAsUncheckedException(e);
                }
            }
    
            protected abstract BuildCacheController getDelegate();
        }
    
        /**
         * This implementation tracks the state of the root build.
         */
        private static class RootBuildCacheController extends DelegatingBuildCacheController {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/kube/krt/internal.go

    	c := &collectionOptions{}
    	for _, o := range opts {
    		o(c)
    	}
    	if c.stop == nil {
    		c.stop = make(chan struct{})
    	}
    	return *c
    }
    
    // collectionOptions tracks options for a collection
    type collectionOptions struct {
    	name         string
    	augmentation func(o any) any
    	stop         <-chan struct{}
    }
    
    // dependency is a specific thing that can be depended on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // +listType=map
      // +listMapKey=name
      // +optional
      repeated ResourceClaimSchedulingStatus resourceClaims = 1;
    }
    
    // ResourceClaim describes which resources are needed by a resource consumer.
    // Its status tracks whether the resource has been allocated and what the
    // resulting attributes are.
    //
    // This is an alpha type and requires enabling the DynamicResourceAllocation
    // feature gate.
    message ResourceClaim {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    func NewWithDelegate(delegate model.XDSUpdater) *Updater {
    	return &Updater{
    		Events:   make(chan Event, 100),
    		Delegate: delegate,
    	}
    }
    
    // Updater is used to test the registry.
    type Updater struct {
    	// Events tracks notifications received by the updater
    	Events   chan Event
    	Delegate model.XDSUpdater
    	// If SplitEvents is true, updates changing multiple objects will be split into multiple events with 1 item each
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    // the previously registered watch from the watch tracker.
    type ForgetWatchFunc func()
    
    // WatchTracker is an interface that allows tracking the number
    // of watches in the system for the purpose of estimating the
    // cost of incoming mutating requests.
    type WatchTracker interface {
    	// RegisterWatch reqisters a watch based on the provided http.Request
    	// in the tracker. It returns the function that should be called
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    	w http.ResponseWriter
    	// conn is returned from Hijack()
    	conn net.Conn
    	// mu guards writes
    	mu sync.Mutex
    	// wrote tracks whether WriteHeader or Write has been called
    	written bool
    	// hijacked tracks whether Hijack has been called
    	hijacked bool
    }
    
    // Hijack returns a delegate "net.Conn".
    // An error is returned if Write(), WriteHeader(), or Hijack() was previously called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top