Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 165 for tracking (0.2 sec)

  1. src/runtime/traceruntime.go

    }
    
    // traceTryAcquire is like traceAcquire, but may return an invalid traceLocker even
    // if tracing is enabled. For example, it will return !ok if traceAcquire is being
    // called with an active traceAcquire on the M (reentrant locking). This exists for
    // optimistically emitting events in the few contexts where tracing is now allowed.
    //
    // nosplit for alignment with traceTryAcquire, so it can be used in the
    // same contexts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/net/http/httptest/server.go

    	return s.client
    }
    
    func (s *Server) goServe() {
    	s.wg.Add(1)
    	go func() {
    		defer s.wg.Done()
    		s.Config.Serve(s.Listener)
    	}()
    }
    
    // wrap installs the connection state-tracking hook to know which
    // connections are idle.
    func (s *Server) wrap() {
    	oldHook := s.Config.ConnState
    	s.Config.ConnState = func(c net.Conn, cs http.ConnState) {
    		s.mu.Lock()
    		defer s.mu.Unlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    }
                    if (host.ignoredFileSystemCheckInputs != ignoredFileSystemCheckInputPaths) {
                        return "the set of paths ignored in file-system-check input tracking has changed"
                    }
                }
                is ConfigurationCacheFingerprint.EnvironmentVariablesPrefixedBy -> input.run {
                    val current = System.getenv().filterKeysByPrefix(prefix)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. settings.gradle.kts

            subproject("file-collections")
            subproject("flow-services")
            subproject("graph-serialization")
            subproject("guava-serialization-codecs")
            subproject("input-tracking")
            subproject("kotlin-dsl")
            subproject("kotlin-dsl-provider-plugins")
            subproject("kotlin-dsl-tooling-builders")
            subproject("kotlin-dsl-tooling-models")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                ignoringUnexpectedInputs()
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22305")
        def "evaluating a value source parameter does not enable input tracking inside the value source"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile.text = """
    
                import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. internal/config/identity/plugin/config.go

    	reqTimeMinute := reqStartTime.Truncate(time.Minute)
    	if reqTimeMinute.After(h.currentMinute.statsTime) {
    		// Drop the last full minute now, since we got a request for a time we
    		// are not yet tracking.
    		h.updateLastFullMinute(reqTimeMinute)
    	}
    	var entry *serviceRTTMinuteStats
    	switch {
    	case reqTimeMinute.Equal(h.currentMinute.statsTime):
    		entry = &h.currentMinute
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/globals.go

    	globalTierConfigMgr *TierConfigMgr
    
    	globalConsoleSrv *consoleapi.Server
    
    	// handles service freeze or un-freeze S3 API calls.
    	globalServiceFreeze atomic.Value
    
    	// Only needed for tracking
    	globalServiceFreezeCnt int32
    	globalServiceFreezeMu  sync.Mutex // Updates.
    
    	// List of local drives to this node, this is only set during server startup,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. cmd/background-newdisks-heal-ops.go

    	QueuedBuckets []string
    
    	// Filled during heal.
    	HealedBuckets []string
    
    	// ID of the current healing operation
    	HealID string
    
    	ItemsSkipped uint64
    	BytesSkipped uint64
    	// Add future tracking capabilities
    	// Be sure that they are included in toHealingDisk
    }
    
    // loadHealingTracker will load the healing tracker from the supplied disk.
    // The disk ID will be validated against the loaded one.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. pkg/config/model.go

    	// queryable and should be preserved when modifying objects.
    	Annotations map[string]string `json:"annotations,omitempty"`
    
    	// ResourceVersion is an opaque identifier for tracking updates to the config registry.
    	// The implementation may use a change index or a commit log for the revision.
    	// The config client should not make any assumptions about revisions and rely only on
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof.go

    // A Profile is a collection of stack traces showing the call sequences
    // that led to instances of a particular event, such as allocation.
    // Packages can create and maintain their own profiles; the most common
    // use is for tracking resources that must be explicitly closed, such as files
    // or network connections.
    //
    // A Profile's methods can be called from multiple goroutines simultaneously.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top