Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for FUNC (0.05 sec)

  1. src/testing/testing.go

    //
    //	func Example() { ... }
    //	func ExampleF() { ... }
    //	func ExampleT() { ... }
    //	func ExampleT_M() { ... }
    //
    // Multiple example functions for a package/type/function/method may be provided by
    // appending a distinct suffix to the name. The suffix must start with a
    // lower-case letter.
    //
    //	func Example_suffix() { ... }
    //	func ExampleF_suffix() { ... }
    //	func ExampleT_suffix() { ... }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    type Reloc struct {
    	*goobj.Reloc
    	r *oReader
    	l *Loader
    }
    
    func (rel Reloc) Type() objabi.RelocType     { return objabi.RelocType(rel.Reloc.Type()) &^ objabi.R_WEAK }
    func (rel Reloc) Weak() bool                 { return objabi.RelocType(rel.Reloc.Type())&objabi.R_WEAK != 0 }
    func (rel Reloc) SetType(t objabi.RelocType) { rel.Reloc.SetType(uint16(t)) }
    func (rel Reloc) Sym() Sym                   { return rel.l.resolve(rel.r, rel.Reloc.Sym()) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    var getConfigForClientTests = []struct {
    	setup          func(config *Config)
    	callback       func(clientHello *ClientHelloInfo) (*Config, error)
    	errorSubstring string
    	verify         func(config *Config) error
    }{
    	{
    		nil,
    		func(clientHello *ClientHelloInfo) (*Config, error) {
    			return nil, nil
    		},
    		"",
    		nil,
    	},
    	{
    		nil,
    		func(clientHello *ClientHelloInfo) (*Config, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // CHECK: return %[[CALL]]
    
      func.func private @composite_dot_general_fn(%arg0: tensor<1x2xf32>, %arg1: tensor<2x3xf32>) -> tensor<1x3xf32> attributes {_from_xla_call_module} {
        %0 = stablehlo.dot_general %arg0, %arg1, contracting_dims = [1] x [0] : (tensor<1x2xf32>, tensor<2x3xf32>) -> tensor<1x3xf32>
        return %0 : tensor<1x3xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	return nil
    }
    
    func (d *dummyStorage) getRequestWatchProgressCounter() int {
    	d.RLock()
    	defer d.RUnlock()
    	return d.requestWatchProgressCounter
    }
    
    type dummyWatch struct {
    	ch chan watch.Event
    }
    
    func (w *dummyWatch) ResultChan() <-chan watch.Event {
    	return w.ch
    }
    
    func (w *dummyWatch) Stop() {
    	close(w.ch)
    }
    
    func newDummyWatch() watch.Interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/math/big/int_test.go

    		x.DivMod(aa, bb, y)
    	}
    }
    
    func BenchmarkDiv(b *testing.B) {
    	sizes := []int{
    		10, 20, 50, 100, 200, 500, 1000,
    		1e4, 1e5, 1e6, 1e7,
    	}
    	for _, i := range sizes {
    		j := 2 * i
    		b.Run(fmt.Sprintf("%d/%d", j, i), func(b *testing.B) {
    			benchmarkDiv(b, j, i)
    		})
    	}
    }
    
    func TestFillBytes(t *testing.T) {
    	checkResult := func(t *testing.T, buf []byte, want *Int) {
    		t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  7. src/os/os_test.go

    	name string
    	f    func(*File) error
    }{
    	{"Chdir", func(f *File) error { return f.Chdir() }},
    	{"Close", func(f *File) error { return f.Close() }},
    	{"Chmod", func(f *File) error { return f.Chmod(0) }},
    	{"Chown", func(f *File) error { return f.Chown(0, 0) }},
    	{"Read", func(f *File) error { _, err := f.Read(make([]byte, 0)); return err }},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    // must gives a fatal error if err is not nil.
    func (tg *testgoData) must(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Fatal(err)
    	}
    }
    
    // check gives a test non-fatal error if err is not nil.
    func (tg *testgoData) check(err error) {
    	tg.t.Helper()
    	if err != nil {
    		tg.t.Error(err)
    	}
    }
    
    // parallel runs the test in parallel by calling t.Parallel.
    func (tg *testgoData) parallel() {
    	tg.t.Helper()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    	contents string
    	err      error
    }
    
    func (f *fakeFileInfo) Name() string       { return f.basename }
    func (f *fakeFileInfo) Sys() any           { return nil }
    func (f *fakeFileInfo) ModTime() time.Time { return f.modtime }
    func (f *fakeFileInfo) IsDir() bool        { return f.dir }
    func (f *fakeFileInfo) Size() int64        { return int64(len(f.contents)) }
    func (f *fakeFileInfo) Mode() fs.FileMode {
    	if f.dir {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    type noErrorMatcher struct{}
    
    func noError() validationMatcher {
    	return noErrorMatcher{}
    }
    
    func (noErrorMatcher) matches(cr CompilationResult) bool {
    	return cr.Error == nil
    }
    
    func (noErrorMatcher) String() string {
    	return "no error"
    }
    
    type transitionRuleMatcher bool
    
    func transitionRule(t bool) validationMatcher {
    	return transitionRuleMatcher(t)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top