Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for i0 (0.07 sec)

  1. src/internal/types/testdata/examples/types.go

    type I2 interface {
    	I1(int)     // method!
    	I1[string]  // embedded I1
    }
    
    func _() {
    	var x I2
    	x.I1(0)
    	x.m1("foo")
    }
    
    type I0 interface {
    	m0()
    }
    
    type I3 interface {
    	I0
    	I1[bool]
    	m(string)
    }
    
    func _() {
    	var x I3
    	x.m0()
    	x.m1(true)
    	x.m("foo")
    }
    
    type _ struct {
    	( /* ERROR "cannot parenthesize" */ int8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. src/go/printer/nodes.go

    				m[i] = true
    			}
    		}
    	}
    
    	i0 := -1 // if i0 >= 0 we are in a run and i0 is the start of the run
    	var keepType bool
    	for i, s := range specs {
    		t := s.(*ast.ValueSpec)
    		if t.Values != nil {
    			if i0 < 0 {
    				// start of a run of ValueSpecs with non-nil Values
    				i0 = i
    				keepType = false
    			}
    		} else {
    			if i0 >= 0 {
    				// end of a run
    				populate(i0, i, keepType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/runtime/map_test.go

    	if !m[GrabBag{c128: 1.0i}] {
    		panic("c128 not found")
    	}
    	m[GrabBag{s: "foo"}] = true
    	if !m[GrabBag{s: "foo"}] {
    		panic("string not found")
    	}
    	m[GrabBag{i0: "foo"}] = true
    	if !m[GrabBag{i0: "foo"}] {
    		panic("interface{} not found")
    	}
    	m[GrabBag{i1: canString(5)}] = true
    	if !m[GrabBag{i1: canString(5)}] {
    		panic("interface{String() string} not found")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. src/go/types/issues_test.go

    			`package main
    import "b"
    type I0 interface {
    	M0(w struct{ f string })
    }
    var _ I0 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M0(struct{ f string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I0 value in variable declaration: b[.]S does not implement I0 [(]wrong type for method M0[)]
    .*have M0[(]struct{f string /[*] package b [*]/ }[)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/issues_test.go

    			`package main
    import "b"
    type I0 interface {
    	M0(w struct{ f string })
    }
    var _ I0 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M0(struct{ f string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I0 value in variable declaration: b[.]S does not implement I0 [(]wrong type for method M0[)]
    .*have M0[(]struct{f string /[*] package b [*]/ }[)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSet.java

        }
    
        private SetBuilderImpl<E> insertInHashTable(E e) {
          requireNonNull(hashTable);
          int eHash = e.hashCode();
          int i0 = Hashing.smear(eHash);
          int mask = hashTable.length - 1;
          for (int i = i0; i - i0 < maxRunBeforeFallback; i++) {
            int index = i & mask;
            Object tableEntry = hashTable[index];
            if (tableEntry == null) {
              addDedupedElement(e);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv12-ExportKeyingMaterial

    000002d0  04 00 80 41 24 c2 f9 e8  40 21 47 3c ab 8e 99 5e  |...A$...@!G<...^|
    000002e0  0e 08 27 86 6c 29 ae 36  ed 21 18 23 67 cc f7 d5  |..'.l).6.!.#g...|
    000002f0  3f e2 2c 48 2f 3d 47 e5  af d5 61 86 0f 91 69 30  |?.,H/=G...a...i0|
    00000300  cf 84 56 f2 d3 c1 9a a3  a1 a2 c8 ef 4d 33 de 12  |..V.........M3..|
    00000310  d6 46 55 5b c6 6a 65 a5  36 b5 51 5b db 04 25 aa  |.FU[.je.6.Q[..%.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. src/math/cmplx/tan.go

    // arithmetic   domain     # trials      peak         rms
    //    DEC       -10,+10      3000       6.5e-17     1.6e-17
    //    IEEE      -10,+10     30000       9.2e-16     1.2e-16
    // Also tested by ctan * ccot = 1 + i0.
    
    // Cot returns the cotangent of x.
    func Cot(x complex128) complex128 {
    	d := math.Cosh(2*imag(x)) - math.Cos(2*real(x))
    	if math.Abs(d) < 0.25 {
    		d = tanSeries(x)
    	}
    	if d == 0 {
    		return Inf()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    K0/yrr080u6iDWzQqZu3I+leem26+ohoNWN1Mui4fuR6r0WFz9LiCW9lscSKmjal
    Q9HhDYowOABwtPjMAZzyuej0bpE7IhamDaXNDRwpQANu6qjNyIpA7SdI3TWMdXy2
    KIDeVwG9pcR89UIyP+VJpICVj2kf9KCbNihskgK6SM223QSGCvyopAFVdS61+nxj
    I0/grPS9fmx2ulnno1YjQ2NQfbZqZ5GMu0DLlNa7cgD8rHT9bypyNUpDSLpu6R2T
    NktEbZPa2sl25WbVmqkkawdRYdnH8bpHvadx+eVh8zImhHxn1OHfSURjeoXBgEus
    OPBANKKK5I0c7wbskFCu2dyq53VmSCya82iYJ2ybj/KzaNEwoAXR7qk6/wBNbPjO
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  10. src/compress/flate/testdata/huffman-rand-max.in

    ���~w�n��7�5��s��-J��?���B� S�C��+[$0��y,�pc��H>U��i0��]�y	�A2N
    �x�_~��Gᨉ�
    L26:���sg:޴���A
    x�����A��B(�6�{�.+v]?��=2Y�BgZ�t?6���mE��h�0( z>T��Wٝ
    ��r���)�~/AY0V'�ߚ�$Hl<���n��:��~�&�R���T��
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
Back to top