Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for NewBlock (0.41 sec)

  1. src/cmd/compile/internal/ssa/func.go

    	id := v.ID
    	if v.InCache {
    		f.unCache(v)
    	}
    	*v = Value{}
    	v.ID = id
    	v.argstorage[0] = f.freeValues
    	f.freeValues = v
    }
    
    // NewBlock allocates a new Block of the given kind and places it at the end of f.Blocks.
    func (f *Func) NewBlock(kind BlockKind) *Block {
    	var b *Block
    	if f.freeBlocks != nil {
    		b = f.freeBlocks
    		f.freeBlocks = b.succstorage[0].b
    		b.succstorage[0].b = nil
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	Flat         string
    	Cumulative   string
    	Instructions []WebListInstruction
    }
    
    // WebListInstruction holds the per-instruction information for HTML source code listing.
    type WebListInstruction struct {
    	NewBlock     bool // Insert marker that indicates separation from previous block
    	Flat         string
    	Cumulative   string
    	Synthetic    bool
    	Address      uint64
    	Disasm       string
    	FileLine     string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

        @Override
        public <T> T withReplacedLocks(Collection<? extends ResourceLock> currentLocks, ResourceLock newLock, Factory<T> factory) {
            if (currentLocks.contains(newLock)) {
                // Already holds the lock
                return factory.create();
            }
    
            List<ResourceLock> newLocks = Collections.singletonList(newLock);
            assertAllLocked(currentLocks);
            releaseLocks(currentLocks);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/work/TestWorkerLeaseService.groovy

        @Override
        void withoutLock(ResourceLock lock, Runnable action) {
            action.run()
        }
    
        @Override
        <T> T withReplacedLocks(Collection<? extends ResourceLock> currentLocks, ResourceLock newLock, Factory<T> factory) {
            return factory.create()
        }
    
        @Override
        <T> T whileDisallowingProjectLockChanges(Factory<T> action) {
            return action.create()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

         */
        <T> T withReplacedLocks(Collection<? extends ResourceLock> currentLocks, ResourceLock newLock, Factory<T> factory);
    
        /**
         * Runs a given {@link Factory} while the specified locks are released and then reacquire the locks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top