Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gcepd (0.03 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                    // Need to keep a reference so that the cached value can be re-evaluated on mutation, but
                    // use a soft reference to allow the state to be GCed
                    //
                    // Also keep a soft reference to try to avoid recreating the state when it is queried during
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    	},
    	EvGCBegin: event.Spec{
    		Name:         "GCBegin",
    		Args:         []string{"dt", "gc_seq", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    	},
    	EvGCEnd: event.Spec{
    		Name:         "GCEnd",
    		Args:         []string{"dt", "gc_seq"},
    		StartEv:      EvGCBegin,
    		IsTimedEvent: true,
    	},
    	EvGCSweepActive: event.Spec{
    		Name:         "GCSweepActive",
    		Args:         []string{"dt", "p"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            captureOutput.flush()
            super.flush()
        }
    
        fun stop() = safely {
            isCapturing!!.remove()
            // Give a chance for other threads' weak references to the local to be GCed if any
            isCapturing = null
        }
    
        private
        fun safely(block: () -> Unit) =
            try {
                synchronized(this, block)
            } catch (ex: InterruptedException) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. src/runtime/traceruntime.go

    	// N.B. Only one GC can be running at a time, so this is naturally
    	// serialized by the caller.
    	trace.seqGC++
    }
    
    // GCDone traces a GCEnd event.
    //
    // Must be emitted by an actively running goroutine on an active P. This restriction can be changed
    // easily and only depends on where it's currently called.
    func (tl traceLocker) GCDone() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top