Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 748 for itable (0.16 sec)

  1. android/guava/src/com/google/common/hash/Striped64.java

       * failed CAS on base update), the table is initialized to size 2.
       * The table size is doubled upon further contention until
       * reaching the nearest power of two greater than or equal to the
       * number of CPUS. Table slots remain empty (null) until they are
       * needed.
       *
       * A single spinlock ("busy") is used for initializing and
       * resizing the table, as well as populating slots with new Cells.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/TreeBasedTable.java

     * {@link Map} specified in the {@link Table} interface.
     *
     * <p>Note that this implementation is not synchronized. If multiple threads access this table
     * concurrently and one of the threads modifies the table, it must be synchronized externally.
     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/NewCollectionTypesExplained#table">{@code Table}</a>.
     *
     * @author Jared Levy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/trace/goroutines.go

    	</tr>
    </table>
    
    <h3 id="breakdown">Breakdown</h3>
    
    The table below breaks down where each goroutine is spent its time during the
    traced period.
    All of the columns except total time are non-overlapping.
    <br>
    <br>
    
    <table class="details">
    <tr>
    <th> Goroutine</th>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/strings/replace.go

    				next:   t.next,
    			}
    			t.prefix = t.prefix[:n]
    			t.next = next
    			next.add(key[n:], val, priority, r)
    		}
    	} else if t.table != nil {
    		// Insert into existing table.
    		m := r.mapping[key[0]]
    		if t.table[m] == nil {
    			t.table[m] = new(trieNode)
    		}
    		t.table[m].add(key[1:], val, priority, r)
    	} else {
    		t.prefix = key
    		t.next = new(trieNode)
    		t.next.add("", val, priority, r)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/generate.go

    	return q
    }
    
    // A {{.p}}Table holds the first 15 multiples of a point at offset -1, so [1]P
    // is at table[0], [15]P is at table[14], and [0]P is implicitly the identity
    // point.
    type {{.p}}Table [15]*{{.P}}Point
    
    // Select selects the n-th multiple of the table base point into p. It works in
    // constant time by iterating over every entry of the table. n must be in [0, 15].
    func (table *{{.p}}Table) Select(p *{{.P}}Point, n uint8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. internal/event/target/mysql.go

    )
    
    // MySQLArgs - MySQL target arguments.
    type MySQLArgs struct {
    	Enable             bool     `json:"enable"`
    	Format             string   `json:"format"`
    	DSN                string   `json:"dsnString"`
    	Table              string   `json:"table"`
    	Host               xnet.URL `json:"host"`
    	Port               string   `json:"port"`
    	User               string   `json:"user"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/cmd/trace/tasks.go

    body {
      font-family: sans-serif;
    }
    table#req-status td.family {
      padding-right: 2em;
    }
    table#req-status td.active {
      padding-right: 1em;
    }
    table#req-status td.empty {
      color: #aaa;
    }
    table#reqs {
      margin-top: 1em;
      border-collapse: collapse;
    }
    table#reqs tr.first {
      font-weight: bold;
    }
    table#reqs td {
      font-family: monospace;
    }
    table#reqs td.when {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/image/jpeg/scan.go

    	nComp := int(d.tmp[0])
    	if n != 4+2*nComp {
    		return FormatError("SOS length inconsistent with number of components")
    	}
    	var scan [maxComponents]struct {
    		compIndex uint8
    		td        uint8 // DC table selector.
    		ta        uint8 // AC table selector.
    	}
    	totalHV := 0
    	for i := 0; i < nComp; i++ {
    		cs := d.tmp[1+2*i] // Component selector.
    		compIndex := -1
    		for j, comp := range d.comp[:d.nComp] {
    			if cs == comp.c {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. schema/relationship.go

    				conds = append(conds, clause.Eq{
    					Column: clause.Column{Table: rel.JoinTable.Table, Name: ref.ForeignKey.DBName},
    					Value:  ref.PrimaryValue,
    				})
    			} else {
    				conds = append(conds, clause.Eq{
    					Column: clause.Column{Table: rel.JoinTable.Table, Name: ref.ForeignKey.DBName},
    					Value:  clause.Column{Table: rel.FieldSchema.Table, Name: ref.PrimaryKey.DBName},
    				})
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	dt.evict()
    }
    
    func (dt *dynamicTable) add(f HeaderField) {
    	dt.table.addEntry(f)
    	dt.size += f.Size()
    	dt.evict()
    }
    
    // If we're too big, evict old stuff.
    func (dt *dynamicTable) evict() {
    	var n int
    	for dt.size > dt.maxSize && n < dt.table.len() {
    		dt.size -= dt.table.ents[n].Size()
    		n++
    	}
    	dt.table.evictOldest(n)
    }
    
    func (d *Decoder) maxTableIndex() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
Back to top