Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 203 for flive (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[find_all_daemons]]
    == Find Daemons
    
    If you have installed the Java Development Kit (JDK), you can view live daemons with the `jps` command.
    
    ----
    $ jps
    ----
    ----
    33920 Jps
    27171 GradleDaemon
    22792
    ----
    
    Live Daemons appear under the name `GradleDaemon`.
    Because this command uses the JDK, you can view Daemons running any version of Gradle.
    
    [[enable_deamon]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

      for (const auto& iter : device_contexts_) {
        iter->Unref();
      }
      // The XlaDeviceContext keeps a reference count to the streams, and the
      // XlaDeviceContext remains live for the duration of a Executor run. This
      // ensures that the streams remain live for the duration of a run, even if
      // an error is encountered and the streams are replaced with new ones.
      for (const auto& iter : shape_determination_fns_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

      TensorReference ref(*device_tensor);
      const bool device_allows_sync_on_completion =
          device->AllowsSyncOnCompletion();
      // Explicitly capture device_to_host_stream to make sure the stream is alive
      // before the transfer finishes.
      transfer_manager_->TransferLiteralFromDevice(
          device_to_host_stream.get(), xla_tensor->shaped_buffer(), literal,
          [this, ref, xla_tensor, done, device_to_host_stream,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/runtime/cgocall.go

    	// back at the call to entersyscall. Normally, fn and arg
    	// would be live at entersyscall and dead at asmcgocall, so if
    	// time moved backwards, GC would see these arguments as dead
    	// and then live. Prevent these undead arguments from crashing
    	// GC by forcing them to stay live across this time warp.
    	KeepAlive(fn)
    	KeepAlive(arg)
    	KeepAlive(mp)
    
    	return errno
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/encoding/pem/pem.go

    			endTrailerIndex = endIndex + len(pemEnd)
    		}
    
    		if endIndex < 0 {
    			continue
    		}
    
    		// After the "-----" of the ending line, there should be the same type
    		// and then a final five dashes.
    		endTrailer := rest[endTrailerIndex:]
    		endTrailerLen := len(typeLine) + len(pemEndOfLine)
    		if len(endTrailer) < endTrailerLen {
    			continue
    		}
    
    		restOfEndLine := endTrailer[endTrailerLen:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/runtime/mfinal.go

    // the rules for valid uses of unsafe.Pointer still apply.
    func KeepAlive(x any) {
    	// Introduce a use of x that the compiler can't eliminate.
    	// This makes sure x is alive on entry. We need x to be alive
    	// on entry for "defer runtime.KeepAlive(x)"; see issue 21402.
    	if cgoAlwaysFalse {
    		println(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    	}
    	Runtime_procUnpin()
    
    	// Put in a large number of objects so they spill into
    	// stealable space.
    	for i := 0; i < 100; i++ {
    		p.Put("c")
    	}
    	// After one GC, the victim cache should keep them alive.
    	runtime.GC()
    	if g := p.Get(); g != "c" {
    		t.Fatalf("got %#v; want c after GC", g)
    	}
    	// A second GC should drop the victim cache.
    	runtime.GC()
    	if g := p.Get(); g != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. pkg/kubelet/certificate/kubelet.go

    		&compbasemetrics.GaugeOpts{
    			Subsystem: metrics.KubeletSubsystem,
    			Name:      "certificate_manager_server_ttl_seconds",
    			Help: "Gauge of the shortest TTL (time-to-live) of " +
    				"the Kubelet's serving certificate. The value is in seconds " +
    				"until certificate expiry (negative if already expired). If " +
    				"serving certificate is invalid or unused, the value will " +
    				"be +INF.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/custom-docs-ui-assets.md

    ## Custom CDN for JavaScript and CSS
    
    Let's say that you want to use a different <abbr title="Content Delivery Network">CDN</abbr>, for example you want to use `https://unpkg.com/`.
    
    This could be useful if for example you live in a country that restricts some URLs.
    
    ### Disable the automatic docs
    
    The first step is to disable the automatic docs, as by default, those use the default CDN.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		return v
    	}
    	v = s.fwdVars[n]
    	if v != nil {
    		return v
    	}
    
    	if s.curBlock == s.f.Entry {
    		// No variable should be live at entry.
    		s.f.Fatalf("value %v (%v) incorrectly live at entry", n, v)
    	}
    	// Make a FwdRef, which records a value that's live on block input.
    	// We'll find the matching definition as part of insertPhis.
    	v = s.newValue0A(ssa.OpFwdRef, t, fwdRefAux{N: n})
    	s.fwdVars[n] = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top