Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for Informer (0.31 sec)

  1. tensorflow/BUILD

        define_values = {"no_tensorflow_py_deps": "true"},
        visibility = ["//visibility:public"],
    )
    
    # Sometimes Bazel reports darwin_x86_64 as "darwin" and sometimes as
    # "darwin_x86_64". The former shows up when building on a Mac x86_64 host for a Mac x86_64 target.
    # The latter shows up when cross-compiling for Mac x86_64 from a Mac ARM machine and in internal
    # Google builds.
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    // fragmentation and reduce the RSS of Go applications.
    //
    // Scavenging in Go happens on two fronts: there's the background
    // (asynchronous) scavenger and the allocation-time (synchronous) scavenger.
    //
    // The former happens on a goroutine much like the background sweeper which is
    // soft-capped at using scavengePercent of the mutator's time, based on
    // order-of-magnitude estimates of the costs of scavenging. The latter happens
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Another example involves providing additional guidance for your users, should they need to adjust their setup or be informed of temporary limitations.
    
    [[config_cache:adoption:changes_in_behavior]]
    === Adopting changes in the configuration cache behavior
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// to remove the pod. A terminal pod (Succeeded/Failed) will have
    	// termination status until the pod is deleted.
    	finished bool
    	// restartRequested is true if the pod worker was informed the pod is
    	// expected to exist (update type of create, update, or sync) after
    	// it has been killed. When known pods are synced, any pod that is
    	// terminated and has restartRequested will have its history cleared.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api.h

    //  output_names - The names of the function's outputs. `output_names` array
    //                 must either have the same length as `outputs`
    //                 (i.e. `noutputs`) or be null. In the former case,
    //                 the names should match the regular expression for ArgDef
    //                 names - "[a-z][a-z0-9_]*". In the latter case,
    //                 names for outputs will be generated automatically.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    	var initialized int32
    	if value {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    	var initialized int32
    	if value {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier.go

    	// Update healthz timestamp at beginning in case Sync() never succeeds.
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.Updated(proxier.ipFamily)
    	}
    
    	// synthesize "last change queued" time as the informers are syncing.
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    	proxier.syncRunner.Loop(wait.NeverStop)
    }
    
    func (proxier *Proxier) setInitialized(value bool) {
    	var initialized int32
    	if value {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	if value != "" {
    		return value
    	}
    	return def
    }
    
    // NOTE: This is not intended to reflect the actual Go version being used.
    // It was changed at the time of Go 1.1 release because the former User-Agent
    // had ended up blocked by some intrusion detection systems.
    // See https://codereview.appspot.com/7532043.
    const defaultUserAgent = "Go-http-client/1.1"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    	handshakeCtx, cancel := context.WithCancel(ctx)
    	// Note: defer this before starting the "interrupter" goroutine
    	// so that we can tell the difference between the input being canceled and
    	// this cancellation. In the former case, we need to close the connection.
    	defer cancel()
    
    	if c.quic != nil {
    		c.quic.cancelc = handshakeCtx.Done()
    		c.quic.cancel = cancel
    	} else if ctx.Done() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top