Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for i0 (0.02 sec)

  1. src/internal/types/testdata/check/typeinst1.go

    }
    
    type E2 interface {
    	~float64
    }
    
    type I0 interface {
    	E0
    }
    
    func f0[T I0]() {}
    var _ = f0[int]
    var _ = f0[bool]
    var _ = f0[string]
    var _ = f0[float64 /* ERROR "does not satisfy I0" */ ]
    
    type I01 interface {
    	E0
    	E1
    }
    
    func f01[T I01]() {}
    var _ = f01[int]
    var _ = f01[bool /* ERROR "does not satisfy I0" */ ]
    var _ = f01[string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/time/zoneinfo_windows.go

    	dst.isDST = true
    
    	// Arrange so that d0 is first transition date, d1 second,
    	// i0 is index of zone after first transition, i1 second.
    	d0 := &i.StandardDate
    	d1 := &i.DaylightDate
    	i0 := 0
    	i1 := 1
    	if d0.Month > d1.Month {
    		d0, d1 = d1, d0
    		i0, i1 = i1, i0
    	}
    
    	// 2 tx per year, 100 years on each side of this year
    	l.tx = make([]zoneTrans, 400)
    
    	t := Now().UTC()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/container/heap/heap.go

    		j = i
    	}
    }
    
    func down(h Interface, i0, n int) bool {
    	i := i0
    	for {
    		j1 := 2*i + 1
    		if j1 >= n || j1 < 0 { // j1 < 0 after int overflow
    			break
    		}
    		j := j1 // left child
    		if j2 := j1 + 1; j2 < n && h.Less(j2, j1) {
    			j = j2 // = 2*i + 2  // right child
    		}
    		if !h.Less(j, i) {
    			break
    		}
    		h.Swap(i, j)
    		i = j
    	}
    	return i > i0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. src/internal/trace/internal/oldtrace/order.go

    	for {
    		i := (j - 1) / 2 // parent
    		if i == j || !h.Less(j, i) {
    			break
    		}
    		(*h)[i], (*h)[j] = (*h)[j], (*h)[i]
    		j = i
    	}
    }
    
    func heapDown(h *orderEventList, i0, n int) bool {
    	i := i0
    	for {
    		j1 := 2*i + 1
    		if j1 >= n || j1 < 0 { // j1 < 0 after int overflow
    			break
    		}
    		j := j1 // left child
    		if j2 := j1 + 1; j2 < n && h.Less(j2, j1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-compilation.graffle

    Monaco;} {\colortbl;\red255\green255\blue255;\red0\green0\blue0;} {\*\expandedcolortbl;;\csgray\c0;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\i\fs32 \cf2 sourceSet \f1\i0 Implementation \f0 \ (configuration)}Bounds{{15, -214}, {224, 65}}ClassShapedGraphicID.0g0.0r0.0space9eaea0911d89d6/+SABlAGwAdgBlAHQAaQBj/+TQBvAG4AYQBjAG8AAACc//kgAZQBsAHYAZQB0AGkAY== Text{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. src/image/image.go

    func (p *RGBA) Opaque() bool {
    	if p.Rect.Empty() {
    		return true
    	}
    	i0, i1 := 3, p.Rect.Dx()*4
    	for y := p.Rect.Min.Y; y < p.Rect.Max.Y; y++ {
    		for i := i0; i < i1; i += 4 {
    			if p.Pix[i] != 0xff {
    				return false
    			}
    		}
    		i0 += p.Stride
    		i1 += p.Stride
    	}
    	return true
    }
    
    // NewRGBA returns a new [RGBA] image with the given bounds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/printer.go

    }
    
    func (p *printer) printFieldList(fields []*Field, tags []*BasicLit, sep token) {
    	i0 := 0
    	var typ Expr
    	for i, f := range fields {
    		if f.Name == nil || f.Type != typ {
    			if i0 < i {
    				p.printFields(fields, tags, i0, i)
    				p.print(sep, newline)
    				i0 = i
    			}
    			typ = f.Type
    		}
    	}
    	p.printFields(fields, tags, i0, len(fields))
    }
    
    func (p *printer) printMethodList(methods []*Field) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. test/abi/s_sif_sif.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // Test ensures that abi information producer and consumer agree about the
    // order of registers for inputs.  T's registers should be I0, F0, I1, F1.
    
    import "fmt"
    
    type P struct {
    	a int8
    	x float64
    }
    
    type T struct {
    	d, e P
    }
    
    //go:registerparams
    //go:noinline
    func G(t T) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 651 bytes
    - Viewed (0)
  9. src/runtime/proc_test.go

    		}
    	}
    	return m
    }
    
    func matmult(done chan<- struct{}, A, B, C Matrix, i0, i1, j0, j1, k0, k1, threshold int) {
    	di := i1 - i0
    	dj := j1 - j0
    	dk := k1 - k0
    	if di >= dj && di >= dk && di >= threshold {
    		// divide in two by y axis
    		mi := i0 + di/2
    		done1 := make(chan struct{}, 1)
    		go matmult(done1, A, B, C, i0, mi, j0, j1, k0, k1, threshold)
    		matmult(nil, A, B, C, mi, i1, j0, j1, k0, k1, threshold)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  10. src/go/printer/testdata/comments.input

    type SZ interface {}
    
    // The I0 interface; no method is exported.
    type I0 interface {
    	f(x int) int  // unexported method
    }
    
    // The I1 interface; some methods are not exported.
    type I1 interface {
    	I0
    	F(x float) float  // exported methods
    	g(x int) int  // unexported method
    }
    
    // The I2 interface; all methods are exported.
    type I2 interface {
    	I0
    	F(x float) float  // exported method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
Back to top