Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,144 for index (0.04 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    // and least width storing the given hash storage index.
    //
    // If h ≤ 0, [TileForIndex] panics.
    func TileForIndex(h int, index int64) Tile {
    	if h <= 0 {
    		panic(fmt.Sprintf("TileForIndex: invalid height %d", h))
    	}
    	t, _, _ := tileForIndex(h, index)
    	return t
    }
    
    // tileForIndex returns the tile of height h ≥ 1
    // storing the given hash index, which can be
    // reconstructed using tileHash(data[start:end]).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	// Colors with high numbers than supported may be treated as zero.
    	Color int
    }
    
    // StackSlot identifies a particular StackSlot.
    type StackSlot struct {
    	Stack int // Index in StackSet.Stacks
    	Pos   int // Index in Stack.Sources
    }
    
    // Stacks returns a StackSet for the profile in rpt.
    func (rpt *Report) Stacks() StackSet {
    	// Get scale for converting to default unit of the right type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/initorder.go

    // a depends on b.
    type graphNode struct {
    	obj        dependency // object represented by this node
    	pred, succ nodeSet    // consumers and dependencies of this node (lazily initialized)
    	index      int        // node index in graph slice/priority queue
    	ndeps      int        // number of outstanding dependencies before this object can be initialized
    }
    
    // cost returns the cost of removing this node, which involves copying each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. src/go/types/initorder.go

    // a depends on b.
    type graphNode struct {
    	obj        dependency // object represented by this node
    	pred, succ nodeSet    // consumers and dependencies of this node (lazily initialized)
    	index      int        // node index in graph slice/priority queue
    	ndeps      int        // number of outstanding dependencies before this object can be initialized
    }
    
    // cost returns the cost of removing this node, which involves copying each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/mpallocbits.go

    }
    
    // find searches for npages contiguous free pages in pallocBits and returns
    // the index where that run starts, as well as the index of the first free page
    // it found in the search. searchIdx represents the first known free page and
    // where to begin the next search from.
    //
    // If find fails to find any free space, it returns an index of ^uint(0) and
    // the new searchIdx should be ignored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/cluster/topology.go

    		PrimaryClusterName:      config.PrimaryClusterName,
    		ConfigClusterName:       config.ConfigClusterName,
    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/controller/job/backoff_utils.go

    }
    
    // getRemainingTimePerIndex returns the remaining time left for a given index to
    // create the replacement pods. The number of consecutive pod failures for the
    // index is retrieved from the `job-index-failure-count` annotation of the
    // last failed pod within the index (represented by `lastFailedPod`).
    // The last failed pod is also used to determine the time of the last failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. clause/expression.go

    						if rv.Len() == 0 {
    							builder.AddVar(builder, nil)
    						} else {
    							for i := 0; i < rv.Len(); i++ {
    								if i > 0 {
    									builder.WriteByte(',')
    								}
    								builder.AddVar(builder, rv.Index(i).Interface())
    							}
    						}
    					default:
    						builder.AddVar(builder, expr.Vars[idx])
    					}
    				}
    			} else {
    				builder.AddVar(builder, expr.Vars[idx])
    			}
    
    			idx++
    		} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. src/time/zoneinfo_windows.go

    	year := t.Year()
    	txi := 0
    	for y := year - 100; y < year+100; y++ {
    		tx := &l.tx[txi]
    		tx.when = pseudoUnix(y, d0) - int64(l.zone[i1].offset)
    		tx.index = uint8(i0)
    		txi++
    
    		tx = &l.tx[txi]
    		tx.when = pseudoUnix(y, d1) - int64(l.zone[i0].offset)
    		tx.index = uint8(i1)
    		txi++
    	}
    }
    
    var usPacific = syscall.Timezoneinformation{
    	Bias: 8 * 60,
    	StandardName: [32]uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. src/image/ycbcr.go

    }
    
    // YCbCr is an in-memory image of Y'CbCr colors. There is one Y sample per
    // pixel, but each Cb and Cr sample can span one or more pixels.
    // YStride is the Y slice index delta between vertically adjacent pixels.
    // CStride is the Cb and Cr slice index delta between vertically adjacent pixels
    // that map to separate chroma samples.
    // It is not an absolute requirement, but YStride and len(Y) are typically
    // multiples of 8, and:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top