Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for a$ (0.07 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/lib/osx/libcunit.a

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 96.5K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/a.yaml

    kind: VirtualService
    metadata:
      name: a
    spec:
      hosts:
      - a
      http:
      # (This 'match' clause started as a work-around, because WaitUntilCallable() times out if
      # all destinations have a subset.  We are now using it for testing.)
      - match:
        - headers:
            end-user:
              exact: jason
        route:
        - destination:
            host: a
      # Fallthrough
      - route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 942 bytes
    - Viewed (0)
  3. test/typeparam/issue49667.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[T any] struct {
    }
    
    func (a A[T]) F() {
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 20 01:00:16 UTC 2021
    - 226 bytes
    - Viewed (0)
  4. test/typeparam/issue50437.dir/a.go

    func (mo MarshalOptions) MarshalNext(in interface{}) error {
    	a := new(arshaler)
    	a.marshal = func(MarshalOptions) error { return nil }
    	return a.marshal(mo)
    }
    
    type arshaler struct {
    	marshal func(MarshalOptions) error
    }
    
    type typedArshalers[Options any] struct {
    	m M
    }
    
    func (a *typedArshalers[Options]) lookup(fnc func(Options) error) (func(Options) error, bool) {
    	a.m.Load(nil)
    	return fnc, false
    }
    
    type M struct {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 07 17:55:52 UTC 2022
    - 935 bytes
    - Viewed (0)
  5. test/fixedbugs/issue56778.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 struct {
    	New func() any
    }
    
    func NewA(i int) *A {
    	return &A{
    		New: func() any {
    			_ = i
    			return nil
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 18:31:28 UTC 2022
    - 293 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue9510a/a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue9510a
    
    /*
    static double csquare(double a, double b) {
    	__complex__ double d;
    	__real__ d = a;
    	__imag__ d = b;
    	return __real__ (d * d);
    }
    */
    import "C"
    
    func F(a, b float64) float64 {
    	return float64(C.csquare(C.double(a), C.double(b)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 413 bytes
    - Viewed (0)
  7. test/fixedbugs/issue54912.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.
    
    // Test that inlining a function literal that captures both a type
    // switch case variable and another local variable works correctly.
    
    package a
    
    func F(p *int, x any) func() {
    	switch x := x.(type) {
    	case int:
    		return func() {
    			*p += x
    		}
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:26:34 UTC 2022
    - 423 bytes
    - Viewed (0)
  8. test/typeparam/issue51219.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 I is the first basic test for the issue, which relates to a type that is recursive
    // via a type constraint.  (In this test, I -> IConstraint -> MyStruct -> I.)
    type JsonRaw []byte
    
    type MyStruct struct {
    	x *I[JsonRaw]
    }
    
    type IConstraint interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 28 14:59:04 UTC 2022
    - 487 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testshared/testdata/issue44031/a/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 ATypeWithALoooooongName interface { // a long name, so the type descriptor symbol name is mangled
    	M()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 281 bytes
    - Viewed (0)
  10. test/fixedbugs/issue60945.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 S struct{}
    
    func callClosure(closure func()) {
    	closure()
    }
    
    func (s *S) M() {
    	callClosure(func() {
    		defer f(s.m) // prevent closures to be inlined.
    	})
    }
    
    func (s *S) m() {}
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 388 bytes
    - Viewed (0)
Back to top