Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 165 for tracking (0.5 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. 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)
  8. .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)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            delegate.rootProject {
                // Instead of the rootProject's `allProjects`, collect the projects while still tracking the current referrer project
                val root = ******@****.***oject
                projectConfigurator.allprojects(crossProjectModelAccess.getAllprojects(referrerProject, root), action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          to the Licensor or its representatives, including but not limited to
          communication on electronic mailing lists, source code control systems,
          and issue tracking systems that are managed by, or on behalf of, the
          Licensor for the purpose of discussing and improving the Work, but
          excluding communication that is conspicuously marked or otherwise
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top