Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,947 for chansend (0.16 sec)

  1. src/runtime/chan.go

    		return 0
    	}
    	return int(c.dataqsiz)
    }
    
    //go:linkname reflect_chanlen reflect.chanlen
    func reflect_chanlen(c *hchan) int {
    	return chanlen(c)
    }
    
    //go:linkname reflectlite_chanlen internal/reflectlite.chanlen
    func reflectlite_chanlen(c *hchan) int {
    	return chanlen(c)
    }
    
    //go:linkname reflect_chancap reflect.chancap
    func reflect_chancap(c *hchan) int {
    	return chancap(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. src/runtime/select.go

    // Changes here must also be made in src/cmd/compile/internal/walk/select.go's scasetype.
    type scase struct {
    	c    *hchan         // chan
    	elem unsafe.Pointer // data element
    }
    
    var (
    	chansendpc = abi.FuncPCABIInternal(chansend)
    	chanrecvpc = abi.FuncPCABIInternal(chanrecv)
    )
    
    func selectsetpc(pc *uintptr) {
    	*pc = getcallerpc()
    }
    
    func sellock(scases []scase, lockorder []uint16) {
    	var c *hchan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/internal/abi/type.go

    //
    // We used to use 16 because the GC programs do have some constant overhead
    // to get started, and processing 128 pointers seems to be enough to
    // amortize that overhead well.
    //
    // To make sure that the runtime's chansend can call typeBitsBulkBarrier,
    // we raised the limit to 2048, so that even 32-bit systems are guaranteed to
    // use bitmaps for objects up to 64 kB in size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	// copying needs to acquire channel locks to protect these
    	// areas of the stack.
    	activeStackChans bool
    	// parkingOnChan indicates that the goroutine is about to
    	// park on a chansend or chanrecv. Used to signal an unsafe point
    	// for stack shrinking.
    	parkingOnChan atomic.Bool
    	// inMarkAssist indicates whether the goroutine is in mark assist.
    	// Used by the execution tracer.
    	inMarkAssist bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. src/reflect/value.go

    //go:noescape
    func chanrecv(ch unsafe.Pointer, nb bool, val unsafe.Pointer) (selected, received bool)
    
    //go:noescape
    func chansend0(ch unsafe.Pointer, val unsafe.Pointer, nb bool) bool
    
    func chansend(ch unsafe.Pointer, val unsafe.Pointer, nb bool) bool {
    	contentEscapes(val)
    	return chansend0(ch, val, nb)
    }
    
    func makechan(typ *abi.Type, size int) (ch unsafe.Pointer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/testdata/iop-changed.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: iop-test-gw-1
      namespace: istio-system
    spec:
      profile: changed-profile
      components:
        ingressGateways:
          - name: test-gw-1
            enabled: false
            label:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 01 12:45:02 UTC 2023
    - 272 bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/testdata/configmap-changed.yaml

    John Howard <******@****.***> 1632329615 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 16:53:35 UTC 2021
    - 220 bytes
    - Viewed (0)
  8. hack/testdata/pod-changed.yaml

    Davanum Srinivas <******@****.***> 1652185809 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 171 bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/builtinlist.go

    	{"runtime.mapiternext", 1},
    	{"runtime.mapclear", 1},
    	{"runtime.makechan64", 1},
    	{"runtime.makechan", 1},
    	{"runtime.chanrecv1", 1},
    	{"runtime.chanrecv2", 1},
    	{"runtime.chansend1", 1},
    	{"runtime.closechan", 1},
    	{"runtime.chanlen", 1},
    	{"runtime.chancap", 1},
    	{"runtime.writeBarrier", 0},
    	{"runtime.typedmemmove", 1},
    	{"runtime.typedmemclr", 1},
    	{"runtime.typedslicecopy", 1},
    	{"runtime.selectnbsend", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/internal/godebugs/table.go

    	{Name: "tlsrsakex", Package: "crypto/tls", Changed: 22, Old: "1"},
    	{Name: "tlsunsafeekm", Package: "crypto/tls", Changed: 22, Old: "1"},
    	{Name: "winreadlinkvolume", Package: "os", Changed: 22, Old: "0"},
    	{Name: "winsymlink", Package: "os", Changed: 22, Old: "0"},
    	{Name: "x509keypairleaf", Package: "crypto/tls", Changed: 23, Old: "0"},
    	{Name: "x509negativeserial", Package: "crypto/x509", Changed: 23, Old: "1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top