Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for checkempty (0.13 sec)

  1. src/runtime/mgcwork.go

    // make wbufs available to the GC.
    
    func (b *workbuf) checknonempty() {
    	if b.nobj == 0 {
    		throw("workbuf is empty")
    	}
    }
    
    func (b *workbuf) checkempty() {
    	if b.nobj != 0 {
    		throw("workbuf is not empty")
    	}
    }
    
    // getempty pops an empty work buffer off the work.empty list,
    // allocating new buffers if none are available.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          } catch (Exception e) {
            AssertionFailedError afe = new AssertionFailedError("Unexpected exception: " + e);
            afe.initCause(e);
            throw afe;
          }
        }
      }
    
      void checkEmpty(BlockingQueue<?> q) {
        try {
          assertTrue(q.isEmpty());
          assertEquals(0, q.size());
          assertNull(q.peek());
          assertNull(q.poll());
          assertNull(q.poll(0, MILLISECONDS));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          } catch (Exception e) {
            AssertionFailedError afe = new AssertionFailedError("Unexpected exception: " + e);
            afe.initCause(e);
            throw afe;
          }
        }
      }
    
      void checkEmpty(BlockingQueue<?> q) {
        try {
          assertTrue(q.isEmpty());
          assertEquals(0, q.size());
          assertNull(q.peek());
          assertNull(q.poll());
          assertNull(q.poll(0, MILLISECONDS));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    	for _, po := range []*poset{ft.orderS, ft.orderU} {
    		// Make sure it's empty as it should be. A non-empty poset
    		// might cause errors and miscompilations if reused.
    		if checkEnabled {
    			if err := po.CheckEmpty(); err != nil {
    				f.Fatalf("poset not empty after function %s: %v", f.Name, err)
    			}
    		}
    		f.retPoset(po)
    	}
    }
    
    // prove removes redundant BlockIf branches that can be inferred
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top