Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for i$ (0.03 sec)

  1. pkg/test/framework/components/echo/instances.go

    }
    
    func (i Instances) NamespacedName() NamespacedName {
    	return i.Config().NamespacedName()
    }
    
    func (i Instances) PortForName(name string) Port {
    	return i.Config().Ports.MustForName(name)
    }
    
    func (i Instances) Config() Config {
    	return i.mustGetFirst().Config()
    }
    
    func (i Instances) Instances() Instances {
    	return i
    }
    
    func (i Instances) mustGetFirst() Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/reflectdata/alg_test.go

    	var a [5]string
    	var c [5]string
    
    	for i := 0; i < 5; i++ {
    		a[i] = "aaaa"
    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfStrings64(b *testing.B) {
    	var a [64]string
    	var c [64]string
    
    	for i := 0; i < 64; i++ {
    		a[i] = "aaaa"
    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

      EinsumDimensionNumbers dnums;
      for (int64_t i = 0; i < lhs.size(); ++i) {
        auto out_index = out_map.find(lhs[i]);
        if (out_index == out_map.end()) {
          dnums.lhs.emplace_back(i);
        } else {
          dnums.lhs_out.emplace_back(i, out_index->second);
        }
      }
    
      for (int64_t i = 0; i < out.size(); ++i) {
        auto lhs_index = lhs_map.find(out[i]);
        if (lhs_index == lhs_map.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. test/escape_level.go

    func level5() {
    	i := 0    // ERROR "moved to heap: i"
    	p0 := &i  // ERROR "moved to heap: p0"
    	p1 := &p0
    	p2 := p1
    	sink = p2
    }
    
    func level6() {
    	i := 0    // ERROR "moved to heap: i"
    	p0 := &i
    	p1 := &p0
    	p2 := p1
    	sink = *p2
    }
    
    func level7() {
    	i := 0    // ERROR "moved to heap: i"
    	p0 := &i
    	p1 := &p0
    	// note *p1 == &i
    	p2 := *p1  // ERROR "moved to heap: p2"
    	sink = &p2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 03 17:52:06 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/link.go

    	// by spaces or tabs. No further character may occur.”
    	i := skipSpace(s, 0)
    	label, i, ok := parseLinkLabel(p.(*parseState), s, i)
    	if !ok || i >= len(s) || s[i] != ':' {
    		return 0, false
    	}
    	i = skipSpace(s, i+1)
    	suf := s[i:]
    	dest, i, ok := parseLinkDest(s, i)
    	if !ok {
    		if suf != "" && suf[0] == '<' {
    			// Goldmark treats <<> as a link definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/resources/org/gradle/reporting/report.js

            while (this.headers[i].firstChild) {
                this.headers[i].removeChild(this.headers[i].firstChild);
            }
    
            var h2 = document.createElement("H2");
    
            h2.appendChild(document.createTextNode(this.titles[i]));
            this.headers[i].appendChild(h2);
        }
    
        function deselectAll() {
            for (var i = 0; i < this.tabs.length; i++) {
                changeElementClass(this.tabs[i], "tab deselected");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/scopes.dlv-dbg.nexts

    23:		x := id(0)
    24:		y := id(0)
    25:		fmt.Println(x)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    30:		y = x + y //gdb-dbg=(x,y)//gdb-opt=(x,y)
    31:		fmt.Println(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-rebalance_gen_test.go

    	v := rebalanceInfo{}
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		v.MarshalMsg(nil)
    	}
    }
    
    func BenchmarkAppendMsgrebalanceInfo(b *testing.B) {
    	v := rebalanceInfo{}
    	bts := make([]byte, 0, v.Msgsize())
    	bts, _ = v.MarshalMsg(bts[0:0])
    	b.SetBytes(int64(len(bts)))
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		bts, _ = v.MarshalMsg(bts[0:0])
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 19:36:57 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. test/fixedbugs/issue59411.go

    	"reflect"
    )
    
    func main() {
    	for i := 0; i < 100; i++ {
    		f()
    		g()
    	}
    }
    
    func f() {
    	// Allocate map.
    	m := map[float64]int{}
    	// Fill to just before a growth trigger.
    	const N = 13 << 4 // 6.5 * 2 * 2^k
    	for i := 0; i < N; i++ {
    		m[math.NaN()] = i
    	}
    	// Trigger growth.
    	m[math.NaN()] = N
    
    	// Iterate through map.
    	i := 0
    	for range m {
    		if i == 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 08 05:25:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/container/heap/heap.go

    // but less expensive than, calling [Remove](h, i) followed by a Push of the new value.
    // The complexity is O(log n) where n = h.Len().
    func Fix(h Interface, i int) {
    	if !down(h, i, h.Len()) {
    		up(h, i)
    	}
    }
    
    func up(h Interface, j int) {
    	for {
    		i := (j - 1) / 2 // parent
    		if i == j || !h.Less(j, i) {
    			break
    		}
    		h.Swap(i, j)
    		j = i
    	}
    }
    
    func down(h Interface, i0, n int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top