Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for marking (0.17 sec)

  1. src/runtime/mgc.go

    		// its P's next findRunnableGCWorker.
    
    		gcBgMarkWorkerCount++
    	}
    }
    
    // gcBgMarkPrepare sets up state for background marking.
    // Mutator assists must not yet be enabled.
    func gcBgMarkPrepare() {
    	// Background marking will stop when the work queues are empty
    	// and there are no more workers (note that, since this is
    	// concurrent, this may be a transient state, but mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	span.freeIndexForScan = span.freeindex
    
    	// Allocate black during GC.
    	// All slots hold nil so no scanning is needed.
    	// This may be racing with GC so do it atomically if there can be
    	// a race marking the bit.
    	if gcphase != _GCoff {
    		gcmarknewobject(span, uintptr(x))
    	}
    
    	if raceenabled {
    		racemalloc(x, size)
    	}
    
    	if msanenabled {
    		msanmalloc(x, size)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// isn't held. (Entries never transitions back to nil.)
    	//
    	// In general, this is a two-level mapping consisting of an L1
    	// map and possibly many L2 maps. This saves space when there
    	// are a huge number of arena frames. However, on many
    	// platforms (even 64-bit), arenaL1Bits is 0, making this
    	// effectively a single-level map. In this case, arenas[0]
    	// will never be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    beforeSettings {
        caches {
            // Disable cache marking for all caches
            markingStrategy.set(MarkingStrategy.NONE)
        }
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .init.gradle
    [source,groovy]
    ----
    beforeSettings { settings ->
        settings.caches {
            // Disable cache marking for all caches
            markingStrategy = MarkingStrategy.NONE
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    			// constant is what it would be if the shift expression
    			// were replaced by its left operand alone.".
    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (SecurityException e) {
          generateCancellationCauses = false;
        }
        GENERATE_CANCELLATION_CAUSES = generateCancellationCauses;
      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (SecurityException e) {
          generateCancellationCauses = false;
        }
        GENERATE_CANCELLATION_CAUSES = generateCancellationCauses;
      }
    
      /**
       * Tag interface marking trusted subclasses. This enables some optimizations. The implementation
       * of this interface must also be an AbstractFuture and must not override or expose for overriding
       * any of the public methods of ListenableFuture.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/types2/expr.go

    			// constant is what it would be if the shift expression
    			// were replaced by its left operand alone.".
    			//
    			// Delay operand checking until we know the final type
    			// by marking the lhs expression as lhs shift operand.
    			//
    			// Usually (in correct programs), the lhs expression
    			// is in the untyped map. However, it is possible to
    			// create incorrect programs where the same expression
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    // *m.byte&m.mask != 0 indicates the mark bit is set.
    // index can be used along with span information to generate
    // the address of the object in the heap.
    // We maintain one set of mark bits for allocation and one for
    // marking purposes.
    type markBits struct {
    	bytep *uint8
    	mask  uint8
    	index uintptr
    }
    
    //go:nosplit
    func (s *mspan) allocBitsForIndex(allocBitIndex uintptr) markBits {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/testing/testing.go

    			// Release the parallel subtests.
    			close(t.barrier)
    			// Wait for subtests to complete.
    			for _, sub := range t.sub {
    				<-sub.signal
    			}
    
    			// Run any cleanup callbacks, marking the test as running
    			// in case the cleanup hangs.
    			cleanupStart := highPrecisionTimeNow()
    			running.Store(t.name, cleanupStart)
    			err := t.runCleanup(recoverAndReturnPanic)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top