Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for tracking (0.22 sec)

  1. src/cmd/trace/pprof.go

    			// Check if we're tracking this goroutine.
    			startEv := tracking[id]
    			if startEv == nil {
    				// We're not. Start tracking if the new state
    				// matches what we want and the transition is
    				// for one of the reasons we care about.
    				if new == state && trackReason(st.Reason) {
    					tracking[id] = ev
    				}
    				continue
    			}
    			// We're tracking this goroutine.
    			if new == state {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. samples/bookinfo/src/productpage/templates/productpage.html

            <h2 class="mt-5 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">Sign in to BookInfo</h2>
        </div>
        <div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
          <form class="space-y-6" method="post" action='login' name="login_form">
            <div>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    	// mutator utilization above this bound cannot affect the
    	// accumulated statistics.
    	bound float64
    
    	// Worst N window tracking
    	nWorst int
    	wHeap  utilHeap
    
    	// Mutator utilization distribution tracking
    	mud *mud
    	// preciseMass is the distribution mass that must be precise
    	// before accumulation is stopped.
    	preciseMass float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. pilot/pkg/xds/ads.go

    	con.ids = ids
    	con.s = s
    	return xds.Stream(con)
    }
    
    // update the node associated with the connection, after receiving a packet from envoy, also adds the connection
    // to the tracking map.
    func (s *DiscoveryServer) initConnection(node *core.Node, con *Connection, identities []string) error {
    	// Setup the initial proxy metadata
    	proxy, err := s.initProxyMetadata(node)
    	if err != nil {
    		return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	nocgocallback bool  // whether disable callback from C
    	tracking      bool  // whether we're tracking this G for sched latency statistics
    	trackingSeq   uint8 // used to decide whether to track this G
    	trackingStamp int64 // timestamp of when the G last started being tracked
    	runnableTime  int64 // the amount of time spent runnable, cleared when running, only used when tracking
    	lockedm       muintptr
    	sig           uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. subprojects/core/build.gradle.kts

        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.nativePlatform)
    
        implementation(projects.io)
        implementation(project(":base-asm"))
        implementation(project(":input-tracking"))
        implementation(project(":model-groovy"))
    
        implementation(libs.asmCommons)
        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.errorProneAnnotations)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/runtime/mgclimit.go

    func (s limiterEventStamp) typ() limiterEventType {
    	return limiterEventType(s >> (64 - limiterEventBits))
    }
    
    // limiterEvent represents tracking state for an event tracked by the GC CPU limiter.
    type limiterEvent struct {
    	stamp atomic.Uint64 // Stores a limiterEventStamp.
    }
    
    // start begins tracking a new limiter event of the current type. If an event
    // is already in flight, then a new event cannot begin because the current time is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

            VLOG(4) << "      Clearing unknown read tracking for ID " << id;
            info.are_last_unknown_reads_tracked = false;
          }
        } else {
          // Unknown write.
          for (auto& [id, info] : per_resource_access_info_) {
            if (op_side_effect_collector_.IsOnlySelfDependent(id)) {
              // For self-dependent-only ID, clear unknown access tracking (the new
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/server.go

    				metav1.NamespaceSystem,
    				IdentityLeaseComponentLabelKey+"="+name,
    			).Run(hookContext.StopCh)
    			return nil
    		})
    	}
    
    	s.GenericAPIServer.AddPostStartHookOrDie("start-legacy-token-tracking-controller", func(hookContext genericapiserver.PostStartHookContext) error {
    		go legacytokentracking.NewController(client).Run(hookContext.StopCh)
    		return nil
    	})
    
    	return s, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. .teamcity/subprojects.json

        "name": "ide-plugins",
        "path": "platforms/ide/ide-plugins",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "input-tracking",
        "path": "platforms/core-configuration/input-tracking",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "installation-beacon",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top