Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for a$ (0.18 sec)

  1. src/go/build/testdata/directives/a.go

    Russ Cox <******@****.***> 1669746650 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 22 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/lib/osx/libgtest.a

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 782.5K bytes
    - Viewed (0)
  3. test/typeparam/absdiffimp2.dir/a.go

    // between a and b, where a and b are of an ordered type.
    func OrderedAbsDifference[T orderedNumeric](a, b T) T {
    	return absDifference(orderedAbs[T]{a}, orderedAbs[T]{b})
    }
    
    // ComplexAbsDifference returns the absolute value of the difference
    // between a and b, where a and b are of a complex type.
    func ComplexAbsDifference[T Complex](a, b T) T {
    	return absDifference(complexAbs[T]{a}, complexAbs[T]{b})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. test/typeparam/absdiffimp.dir/a.go

    // }
    //
    // // complexAbs is a helper type that defines an Abs method for
    // // complex types.
    // type complexAbs[T Complex] T
    //
    // func (a complexAbs[T]) Abs() complexAbs[T] {
    // 	r := float64(real(a))
    // 	i := float64(imag(a))
    // 	d := math.Sqrt(r*r + i*i)
    // 	return complexAbs[T](complex(d, 0))
    // }
    //
    // // OrderedAbsDifference returns the absolute value of the difference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 00:11:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue29919.dir/a.go

    		println(s)
    	}
    	if strings.Contains(s, "autogenerated") {
    		panic("autogenerated code in traceback")
    	}
    	if !strings.Contains(s, "a.go:15") {
    		panic("missing a.go:15")
    	}
    	if !strings.Contains(s, "a.go:19") {
    		panic("missing a.go:19")
    	}
    	if !strings.Contains(s, "a.init") {
    		panic("missing a.init")
    	}
    
    	// Check the CallersFrames results.
    	if debug {
    		iter := runtime.CallersFrames(pcs[:n])
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 17:50:47 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. test/typeparam/issue51367.dir/a.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type A[T any] struct{}
    
    func (_ A[T]) Method() {}
    
    func DoSomething[P any]() {
    	a := A[*byte]{}
    	a.Method()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 15:58:07 UTC 2022
    - 281 bytes
    - Viewed (0)
  7. test/typeparam/chansimp.dir/a.go

    	}
    }
    
    // Ranger returns a Sender and a Receiver. The Receiver provides a
    // Next method to retrieve values. The Sender provides a Send method
    // to send values and a Close method to stop sending values. The Next
    // method indicates when the Sender has been closed, and the Send
    // method indicates when the Receiver has been freed.
    //
    // This is a convenient way to exit a goroutine sending values when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  8. test/typeparam/issue47892b.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type T struct{ p *int64 }
    
    type i struct{}
    
    func G() *T { return &T{nil} }
    
    func (j i) F(a, b *T) *T {
    	n := *a.p + *b.p
    	return &T{&n}
    }
    
    func (j i) G() *T {
    	return &T{}
    }
    
    type I[Idx any] interface {
    	G() Idx
    	F(a, b Idx) Idx
    }
    
    func Gen() I[*T] {
    	return i{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 29 14:10:21 UTC 2021
    - 436 bytes
    - Viewed (0)
  9. test/fixedbugs/issue49094.dir/a.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    type A struct{}
    
    func (a *A) f() bool {
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 22 00:57:18 UTC 2021
    - 226 bytes
    - Viewed (0)
  10. test/typeparam/listimp2.dir/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    import (
    	"fmt"
    )
    
    // Element is an element of a linked list.
    type Element[T any] struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
Back to top