Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for gcepd (0.04 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. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

       * getChecked(future, WillBeUnloadedException.class)}, and returns the loader. The caller can then
       * test that the {@code ClassLoader} can still be GCed. The test amounts to a test that {@code
       * getChecked} holds no strong references to the class.
       */
      private WeakReference<?> doTestClassUnloading() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

       * getChecked(future, WillBeUnloadedException.class)}, and returns the loader. The caller can then
       * test that the {@code ClassLoader} can still be GCed. The test amounts to a test that {@code
       * getChecked} holds no strong references to the class.
       */
      private WeakReference<?> doTestClassUnloading() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

            return;
          }
    
          /*
           * If we're about to complete the TimeoutFuture, we want to release our reference to it.
           * Otherwise, we'll pin it (and its result) in memory until the timeout task is GCed. (The
           * need to clear our reference to the TimeoutFuture is the reason we use a *static* nested
           * class with a manual reference back to the "containing" class.)
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. 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)
  6. src/internal/trace/order.go

    		// This is not the right GC cycle.
    		return curCtx, false, nil
    	}
    	if o.gcState == gcNotRunning {
    		return curCtx, false, fmt.Errorf("encountered GCEnd when GC was not in progress")
    	}
    	if o.gcState == gcUndetermined {
    		return curCtx, false, fmt.Errorf("encountered GCEnd when GC was in an undetermined state")
    	}
    	o.gcSeq = seq
    	o.gcState = gcNotRunning
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         * cancelled.
         */
        @CheckForNull Executor delegate;
    
        /**
         * Set before calling delegate.execute(); set to null once run, so that it can be GCed; this
         * object may live on after, if submitAsync returns an incomplete future.
         */
        @CheckForNull Runnable task;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

         * cancelled.
         */
        @CheckForNull Executor delegate;
    
        /**
         * Set before calling delegate.execute(); set to null once run, so that it can be GCed; this
         * object may live on after, if submitAsync returns an incomplete future.
         */
        @CheckForNull Runnable task;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top