Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,335 for FUNC (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    func.func @verifier_replicate_terminator() {
      "tf_device.replicate" () ({
    // expected-error@+2 {{'func.return' op expects parent op 'func.func'}}
      ^entry:
        func.return
      }) {n = 2 : i32, operandSegmentSizes = array<i32: 0, 0>} : () -> ()
      func.return
    }
    
    // -----
    
    // Check that a replicate with 'n' attribute that is less than 2 is invalid.
    func.func @verifier_replicate_n() {
      "tf_device.replicate" () ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_386.go

    func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_bind_trampoline), uintptr(s), uintptr(addr), uintptr(addrlen))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_bind_trampoline()
    
    //go:cgo_import_dynamic libc_bind bind "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/runtime/export_test.go

    }
    func LFNodeValidate(node *LFNode) {
    	lfnodeValidate((*lfnode)(unsafe.Pointer(node)))
    }
    
    func Netpoll(delta int64) {
    	systemstack(func() {
    		netpoll(delta)
    	})
    }
    
    func GCMask(x any) (ret []byte) {
    	systemstack(func() {
    		ret = getgcmask(x)
    	})
    	return
    }
    
    func RunSchedLocalQueueTest() {
    	pp := new(p)
    	gs := make([]g, len(pp.runq))
    	Escape(gs) // Ensure gs doesn't move, since we use guintptrs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. src/cmd/internal/goobj/objfile.go

    func (s *Sym) Flag2() uint8  { return s[12] }
    func (s *Sym) Siz() uint32   { return binary.LittleEndian.Uint32(s[13:]) }
    func (s *Sym) Align() uint32 { return binary.LittleEndian.Uint32(s[17:]) }
    
    func (s *Sym) Dupok() bool         { return s.Flag()&SymFlagDupok != 0 }
    func (s *Sym) Local() bool         { return s.Flag()&SymFlagLocal != 0 }
    func (s *Sym) Typelink() bool      { return s.Flag()&SymFlagTypelink != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    
    func.func @then_function() {
      tf_executor.graph {
        tf_executor.island {
          "tf.OpA"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    func.func @else_function() {
      tf_executor.graph {
        tf_executor.island {
          "tf.OpB"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  6. src/runtime/race.go

    var racearenastart uintptr
    var racearenaend uintptr
    
    func racefuncenter(callpc uintptr)
    func racefuncenterfp(fp uintptr)
    func racefuncexit()
    func raceread(addr uintptr)
    func racewrite(addr uintptr)
    func racereadrange(addr, size uintptr)
    func racewriterange(addr, size uintptr)
    func racereadrangepc1(addr, size, pc uintptr)
    func racewriterangepc1(addr, size, pc uintptr)
    func racecallbackthunk(uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/log/slog/logger_test.go

    		wantAllocs(t, 0, func() { dl.Info("hello") })
    	})
    	t.Run("logger.Log", func(t *testing.T) {
    		wantAllocs(t, 0, func() { dl.Log(ctx, LevelDebug, "hello") })
    	})
    	t.Run("2 pairs", func(t *testing.T) {
    		s := "abc"
    		i := 2000
    		wantAllocs(t, 2, func() {
    			dl.Info("hello",
    				"n", i,
    				"s", s,
    			)
    		})
    	})
    	t.Run("2 pairs disabled inline", func(t *testing.T) {
    		l := New(discardHandler{disabled: true})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz.txt

        })
    }
    
    func FuzzFail(f *testing.F) {
        fuzzFn(f)
    }
    
    func FuzzPass(f *testing.F) {
        fuzzFn(f)
    }
    
    func FuzzPassString(f *testing.F) {
        f.Add("some seed corpus")
        f.Fuzz(func(*testing.T, string) {})
    }
    
    func FuzzPanic(f *testing.F) {
        f.Fuzz(func(t *testing.T, b []byte) {})
    }
    
    func FuzzInNestedDir(f *testing.F) {
        f.Fuzz(func(t *testing.T, b []byte) {})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  9. internal/s3select/unused-errors.go

    //
    // /////////////////////////////////////////////////////////////////////
    func errExpressionTooLong(err error) *s3Error {
    	return &s3Error{
    		code:       "ExpressionTooLong",
    		message:    "The SQL expression is too long: The maximum byte-length for the SQL expression is 256 KB.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errColumnTooLong(err error) *s3Error {
    	return &s3Error{
    		code:       "ColumnTooLong",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. pkg/apis/networking/v1alpha1/zz_generated.conversion.go

    	networking "k8s.io/kubernetes/pkg/apis/networking"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    // RegisterConversions adds conversion functions to the given scheme.
    // Public to allow building arbitrary schemes.
    func RegisterConversions(s *runtime.Scheme) error {
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.IPAddress)(nil), (*networking.IPAddress)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top