Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Hwassist (3.25 sec)

  1. src/runtime/mgcmark.go

    }
    
    // gcParkAssist puts the current goroutine on the assist queue and parks.
    //
    // gcParkAssist reports whether the assist is now satisfied. If it
    // returns false, the caller must retry the assist.
    func gcParkAssist() bool {
    	lock(&work.assistQueue.lock)
    	// If the GC cycle finished while we were getting the lock,
    	// exit the assist. The cycle can't finish while we hold the
    	// lock.
    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. src/runtime/mgcpacer.go

    // calls to revise.
    //
    // The result of this race is that the two assist ratio values may not line
    // up or may be stale. In practice this is OK because the assist ratio
    // moves slowly throughout a GC cycle, and the assist ratio is a best-effort
    // heuristic anyway. Furthermore, no part of the heuristic depends on
    // the two assist ratio values being exact reciprocals of one another, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		x = add(x, size-dataSize)
    	}
    
    	return x
    }
    
    // deductAssistCredit reduces the current G's assist credit
    // by size bytes, and assists the GC if necessary.
    //
    // Caller must be preemptible.
    //
    // Returns the G for which the assist credit was accounted.
    func deductAssistCredit(size uintptr) *g {
    	var assistG *g
    	if gcBlackenEnabled != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[kotlin_dsl]]
    = Gradle Kotlin DSL Primer
    
    Gradle's Kotlin DSL provides an alternative syntax to the traditional Groovy DSL with an enhanced editing experience in supported IDEs, with superior content assist, refactoring, documentation, and more.
    This chapter provides details of the main Kotlin DSL constructs and how to use it to interact with the Gradle API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return pluginArtifact;
        }
    
        /**
         * Gets the project building request from which this project instance was created. <strong>Warning:</strong> This is
         * a utility method that is meant to assist integrators of Maven, it must not be used by Maven plugins.
         *
         * @return The project building request or {@code null}.
         * @since 2.1
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/replica_calculator_test.go

    	fakeEMClient := &emfake.FakeExternalMetricsClient{}
    	fakeEMClient.AddReactor("list", "*", func(action core.Action) (handled bool, ret runtime.Object, err error) {
    		listAction, wasList := action.(core.ListAction)
    		if !wasList {
    			return true, nil, fmt.Errorf("expected a list-for action, got %v instead", action)
    		}
    
    		if tc.metric == nil {
    			return true, nil, fmt.Errorf("no external metrics specified in test client")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// to do this before calling sysUsed because that may commit address space.
    	bytesToScavenge := uintptr(0)
    	forceScavenge := false
    	if limit := gcController.memoryLimit.Load(); !gcCPULimiter.limiting() {
    		// Assist with scavenging to maintain the memory limit by the amount
    		// that we expect to page in.
    		inuse := gcController.mappedReady.Load()
    		// Be careful about overflow, especially with uintptrs. Even on 32-bit platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "format": {
              "description": "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for details.",
              "type": "string"
            },
            "jsonPath": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"description": "description is a human readable description of this column.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. src/runtime/mgc.go

    	// Omit idle marking time from the overall utilization here since it's "free".
    	memstats.gc_cpu_fraction = float64(work.cpuStats.GCTotalTime-work.cpuStats.GCIdleTime) / float64(work.cpuStats.TotalTime)
    
    	// Reset assist time and background time stats.
    	//
    	// Do this now, instead of at the start of the next GC cycle, because
    	// these two may keep accumulating even if the GC is not active.
    	scavenge.assistTime.Store(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top