Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for Moon (0.08 sec)

  1. src/runtime/mgcmark.go

    		if span.spanclass.noscan() {
    			gcw.bytesMarked += uint64(span.elemsize)
    			return
    		}
    	}
    
    	// We're adding obj to P's local workbuf, so it's likely
    	// this object will be processed soon by the same P.
    	// Even if the workbuf gets flushed, there will likely still be
    	// some benefit on platforms with inclusive shared caches.
    	sys.Prefetch(obj)
    	// Queue the obj for scanning.
    	if !gcw.putFast(obj) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      // on GPU0. However, it should not be clustered with the next node on
      // GPU0, because that will prevent the node on GPU1 from beginning its work as
      // soon as the data has been produced.
      //
      // This graph is:
      // (Const0, Const0) -> MatMulSource
      // MatMulSource -> (MatMul0, MatMul1)
      //
      // Device0: [Const0, Const1, MatMulSource, MatMul0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    // by the application.
    func (c *gcControllerState) endCycle(now int64, procs int, userForced bool) {
    	// Record last heap goal for the scavenger.
    	// We'll be updating the heap goal soon.
    	gcController.lastHeapGoal = c.heapGoal()
    
    	// Compute the duration of time for which assists were turned on.
    	assistDuration := now - c.markStartTime
    
    	// Assume background mark hit its utilization goal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    				logger.Error(err, "Error removing ipset", "ipset", set.name)
    				encounteredError = true
    			}
    		}
    	}
    	return encounteredError
    }
    
    // Sync is called to synchronize the proxier state to iptables and ipvs as soon as possible.
    func (proxier *Proxier) Sync() {
    	if proxier.healthzServer != nil {
    		proxier.healthzServer.QueuedUpdate(proxier.ipFamily)
    	}
    	metrics.SyncProxyRulesLastQueuedTimestamp.SetToCurrentTime()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

            && clobber(call)
            => (Move [sz] dst src mem)
    
    // Prefetch instructions (TH specified using aux field)
    // For DCBT Ra,Rb,TH, A value of TH indicates:
    //     0, hint this cache line will be used soon. (PrefetchCache)
    //     16, hint this cache line will not be used for long. (PrefetchCacheStreamed)
    // See ISA 3.0 Book II 4.3.2 for more detail. https://openpower.foundation/specifications/isa/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

           * because their next fields won't change. Statistically, at the default threshold, only
           * about one-sixth of them need cloning when a table doubles. The nodes they replace will be
           * garbage collectable as soon as they are no longer referenced by any reader thread that may
           * be in the midst of traversing table right now.
           */
    
          int newCount = count;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    * <<config_cache:requirements:task_extensions, Using task extensions and conventions at execution time>>
    
    It is recommended to enable it as soon as possible in order to be ready for when we remove the flag and make the linked features the default.
    
    [[config_cache:ide]]
    == IDE support
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				// either of those conditions holds, *and* no other query changes the
    				// selected version of curM, then we will fail in checkWildcardVersions.
    				// (This could be an error, but it's too soon to tell.)
    				//
    				// However, even then the transitive requirements of some other query
    				// may downgrade this module out of the build list entirely, in which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

           * because their next fields won't change. Statistically, at the default threshold, only
           * about one-sixth of them need cloning when a table doubles. The nodes they replace will be
           * garbage collectable as soon as they are no longer referenced by any reader thread that may
           * be in the midst of traversing table right now.
           */
    
          int newCount = count;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    +
    The directory where the generated files go. As with input files, there are several annotations for output files and directories. A property representing a single directory requires `@OutputDirectory`. You’ll learn about the others soon.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top