Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for FUNC (0.09 sec)

  1. src/runtime/signal_linux_mips64x.go

    func (c *sigctxt) r13() uint64 { return c.regs().sc_regs[13] }
    func (c *sigctxt) r14() uint64 { return c.regs().sc_regs[14] }
    func (c *sigctxt) r15() uint64 { return c.regs().sc_regs[15] }
    func (c *sigctxt) r16() uint64 { return c.regs().sc_regs[16] }
    func (c *sigctxt) r17() uint64 { return c.regs().sc_regs[17] }
    func (c *sigctxt) r18() uint64 { return c.regs().sc_regs[18] }
    func (c *sigctxt) r19() uint64 { return c.regs().sc_regs[19] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  2. test/typeparam/issue48645b.go

    package main
    
    type Iterator[T any] interface {
    	Iterate(fn func(T) bool)
    }
    
    type IteratorFunc[T any] func(fn func(T) bool)
    
    func (f IteratorFunc[T]) Iterate(fn func(T) bool) {
    	f(fn)
    }
    
    type Stream[T any] struct {
    	it Iterator[T]
    }
    
    func (s Stream[T]) Iterate(fn func(T) bool) {
    	if s.it == nil {
    		return
    	}
    	s.it.Iterate(fn)
    }
    
    func FromIterator[T any](it Iterator[T]) Stream[T] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/signal_netbsd_arm64.go

    func (c *sigctxt) r18() uint64 { return c.regs().__gregs[_REG_X18] }
    func (c *sigctxt) r19() uint64 { return c.regs().__gregs[_REG_X19] }
    func (c *sigctxt) r20() uint64 { return c.regs().__gregs[_REG_X20] }
    func (c *sigctxt) r21() uint64 { return c.regs().__gregs[_REG_X21] }
    func (c *sigctxt) r22() uint64 { return c.regs().__gregs[_REG_X22] }
    func (c *sigctxt) r23() uint64 { return c.regs().__gregs[_REG_X23] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 20 15:02:01 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  4. cmd/logging.go

    }
    
    func rebalanceLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "rebalance", err, errKind...)
    }
    
    func rebalanceLogEvent(ctx context.Context, msg string, args ...interface{}) {
    	logger.Event(ctx, "rebalance", msg, args...)
    }
    
    func adminLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "admin", err, errKind...)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4085b.go

    		shouldPanic("len out of range", func() { _ = make([]byte, x) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, x) })
    		testMakeInAppend(int(x))
    	} else {
    		n = 1<<31 - 1
    		shouldPanic("len out of range", func() { _ = make(T, n) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, n) })
    		shouldPanic("len out of range", func() { _ = make(T, int64(n)) })
    		shouldPanic("cap out of range", func() { _ = make(T, 0, int64(n)) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 17 17:18:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/atomic_arm64.go

    func Or8(ptr *uint8, val uint8)
    
    //go:noescape
    func And8(ptr *uint8, val uint8)
    
    //go:noescape
    func And(ptr *uint32, val uint32)
    
    //go:noescape
    func Or(ptr *uint32, val uint32)
    
    //go:noescape
    func And32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    func Or32(ptr *uint32, val uint32) uint32
    
    //go:noescape
    func And64(ptr *uint64, val uint64) uint64
    
    //go:noescape
    func Or64(ptr *uint64, val uint64) uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/runtime/signal_linux_loong64.go

    func (c *sigctxt) r13() uint64 { return c.regs().sc_regs[13] }
    func (c *sigctxt) r14() uint64 { return c.regs().sc_regs[14] }
    func (c *sigctxt) r15() uint64 { return c.regs().sc_regs[15] }
    func (c *sigctxt) r16() uint64 { return c.regs().sc_regs[16] }
    func (c *sigctxt) r17() uint64 { return c.regs().sc_regs[17] }
    func (c *sigctxt) r18() uint64 { return c.regs().sc_regs[18] }
    func (c *sigctxt) r19() uint64 { return c.regs().sc_regs[19] }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/openapi/adaptor.go

    }
    
    func (s *Schema) Maximum() *float64 {
    	return s.Schema.Maximum
    }
    
    func (s *Schema) IsExclusiveMaximum() bool {
    	return s.Schema.ExclusiveMaximum
    }
    
    func (s *Schema) MultipleOf() *float64 {
    	return s.Schema.MultipleOf
    }
    
    func (s *Schema) UniqueItems() bool {
    	return s.Schema.UniqueItems
    }
    
    func (s *Schema) MinItems() *int64 {
    	return s.Schema.MinItems
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. test/escape2.go

    		return x
    	}
    }
    
    func foo23a(x int) func() int {
    	f := func() int { // ERROR "func literal escapes to heap$"
    		return x
    	}
    	return f
    }
    
    func foo23b(x int) *(func() int) {
    	f := func() int { return x } // ERROR "func literal escapes to heap$" "moved to heap: f$"
    	return &f
    }
    
    func foo23c(x int) func() int { // ERROR "moved to heap: x$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/inlining.mlir

    func.func private @simple_callee() -> tensor<2xi32>  {
      %cst = "tf.Const"() { value = dense<2> : tensor<2xi32> } : () -> tensor<2xi32>
      func.return %cst : tensor<2xi32>
    }
    
    func.func private @simple_callee_with_noinline() -> tensor<2xi32> attributes {tf._noinline = true} {
      %cst = "tf.Const"() { value = dense<2> : tensor<2xi32> } : () -> tensor<2xi32>
      func.return %cst : tensor<2xi32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top