Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 965 for blockAsm (0.16 sec)

  1. src/net/textproto/pipeline.go

    	response sequencer
    }
    
    // Next returns the next id for a request/response pair.
    func (p *Pipeline) Next() uint {
    	p.mu.Lock()
    	id := p.id
    	p.id++
    	p.mu.Unlock()
    	return id
    }
    
    // StartRequest blocks until it is time to send (or, if this is a server, receive)
    // the request with the given id.
    func (p *Pipeline) StartRequest(id uint) {
    	p.request.Start(id)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 16:19:51 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    	case *md.List:
    		addSymbolLinksBlocks(b.Items, defaultPackage)
    	case *md.Item:
    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	case *md.Paragraph:
    		addSymbolLinksBlock(b.Text, defaultPackage)
    	case *md.Quote:
    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	// no links in these blocks
    	case *md.CodeBlock:
    	case *md.HTMLBlock:
    	case *md.Empty:
    	case *md.ThematicBreak:
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    	// Search the CFG depth-first for a path, from defblock to a
    	// return block, in which v is never "used".
    	seen := make(map[*cfg.Block]bool)
    	var search func(blocks []*cfg.Block) *ast.ReturnStmt
    	search = func(blocks []*cfg.Block) *ast.ReturnStmt {
    		for _, b := range blocks {
    			if seen[b] {
    				continue
    			}
    			seen[b] = true
    
    			// Prune the search if the block uses v.
    			if blockUses(pass, v, b) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue26024.go

    // f compiles into code where no stores remain in the two successors
    // of a write barrier block; i.e., they are empty. Pre-fix, this
    // results in an unexpected input to markUnsafePoints, that expects to
    // see a pair of non-empty plain blocks.
    func f() {
    	var i int
    	var s string
    	for len(s) < len(s) {
    		i++
    		s = "a"
    	}
    	var b bool
    	var sa []string
    	for true {
    		sa = []string{""}
    		for b || i == 0 {
    		}
    		b = !b
    		_ = sa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 19:06:09 UTC 2018
    - 614 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/plugins/jvm/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Dependency modifiers that can access platform and enforced platforms in {@code dependencies} blocks.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 19:02:14 UTC 2023
    - 765 bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseService.java

         * the locks upon completion.  Blocks until the specified locks can be obtained.
         */
        <T> T withLocks(Collection<? extends ResourceLock> locks, Factory<T> factory);
    
        /**
         * Runs a given {@link Runnable} while the specified locks are being held, releasing
         * the locks upon completion.  Blocks until the specified locks can be obtained.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/copyelim.go

    func copyelim(f *Func) {
    	phielim(f)
    
    	// loop of copyelimValue(v) process has been done in phielim() pass.
    	// Update block control values.
    	for _, b := range f.Blocks {
    		for i, v := range b.ControlValues() {
    			if v.Op == OpCopy {
    				b.ReplaceControl(i, v.Args[0])
    			}
    		}
    	}
    
    	// Update named values.
    	for _, name := range f.Names {
    		values := f.NamedValues[*name]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/func.go

    // 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 {
    		ID := f.bid.get()
    		if int(ID) < len(f.Cache.blocks) {
    			b = &f.Cache.blocks[ID]
    			b.ID = ID
    		} else {
    			b = &Block{ID: ID}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. .github/workflows/slack-notifier.yml

                  "text": "<https://github.com/gradle/gradle/issues/${{ github.event.issue.number }}|[gradle/gradle#${{ github.event.issue.number }}]> `${{ github.event.issue.title }}` has label `${{ github.event.label.name }}`",
                  "blocks": [
                    {
                      "type": "section",
                      "text": {
                        "type": "mrkdwn",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. cmd/namespace-lock_test.go

    		// not be required but makes reproduction much easier.
    		nsLk.lockMapMutex.Lock()
    
    		// lk3 blocks.
    		lk3ch := make(chan bool)
    		go func() {
    			lk3ch <- nsLk.lock(ctx, "volume", "path", "source", "opsID", false, 0)
    		}()
    
    		// lk4, blocks.
    		lk4ch := make(chan bool)
    		go func() {
    			lk4ch <- nsLk.lock(ctx, "volume", "path", "source", "opsID", false, 0)
    		}()
    		runtime.Gosched()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 3.1K bytes
    - Viewed (0)
Back to top