Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for clen (0.06 sec)

  1. src/os/os_test.go

    	file1, err2 := Open(dir)
    	if err2 != nil {
    		t.Fatalf("open %q failed: %v", dir, err2)
    	}
    	defer file1.Close()
    	small := smallReaddirnames(file1, len(all)+100, t) // +100 in case we screw up
    	if len(small) < len(all) {
    		t.Fatalf("len(small) is %d, less than %d", len(small), len(all))
    	}
    	for i, n := range all {
    		if small[i] != n {
    			t.Errorf("small read %q mismatch: %v", small[i], n)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    	// overhead of reversing the list when swapping stages.
    	head    []*wantConn
    	headPos int
    	tail    []*wantConn
    }
    
    // len returns the number of items in the queue.
    func (q *wantConnQueue) len() int {
    	return len(q.head) - q.headPos + len(q.tail)
    }
    
    // pushBack adds w to the back of the queue.
    func (q *wantConnQueue) pushBack(w *wantConn) {
    	q.tail = append(q.tail, w)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top