Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for goroutines (0.34 sec)

  1. src/net/http/h2_bundle.go

    				sc.conn.Close()
    			}
    		}
    		sc.writeSched.Push(wr)
    	}
    	sc.scheduleFrameWrite()
    }
    
    // startFrameWrite starts a goroutine to write wr (in a separate
    // goroutine since that might block on the network), and updates the
    // serve goroutine's state about the world, updated from info in wr.
    func (sc *http2serverConn) startFrameWrite(wr http2FrameWriteRequest) {
    	sc.serveG.check()
    	if sc.writingFrame {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <a href="#Length_and_capacity"><code>cap</code></a> and
    <a href="#Length_and_capacity"><code>len</code></a>
    by any number of goroutines without further synchronization.
    Channels act as first-in-first-out queues.
    For example, if one goroutine sends values on a channel
    and a second goroutine receives them, the values are
    received in the order sent.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.27.md

    - `client-go`: `sharedInformerFactory` now waits for goroutines during shutdown for metadatainformer and dynamicinformer. ([#114434](https://github.com/kubernetes/kubernetes/pull/114434), [@howardjohn](https://github.com/howardjohn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-63567`](https://youtrack.jetbrains.com/issue/KT-63567) "NoSuchMethodError" on getting value of lazily initialized property by companion's const value
    - [`KT-56078`](https://youtrack.jetbrains.com/issue/KT-56078) K2: build kotlinx.coroutines
    - [`KT-67609`](https://youtrack.jetbrains.com/issue/KT-67609) K2: False negative INFERRED_TYPE_VARIABLE_INTO_EMPTY_INTERSECTION_ERROR
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    var testNodeIPs = []string{testNodeIP, testNodeIPAlt, testExternalIP, testNodeIPv6, testNodeIPv6Alt}
    
    func NewFakeProxier(ipt utiliptables.Interface) *Proxier {
    	// TODO: Call NewProxier after refactoring out the goroutine
    	// invocation into a Run() method.
    	ipfamily := v1.IPv4Protocol
    	podCIDR := "10.0.0.0/8"
    	if ipt.IsIPv6() {
    		ipfamily = v1.IPv6Protocol
    		podCIDR = "fd00:10::/64"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) entryNewValue2A(op ssa.Op, t *types.Type, aux ssa.Aux, arg0, arg1 *ssa.Value) *ssa.Value {
    	return s.entryBlock().NewValue2A(src.NoXPos, op, t, aux, arg0, arg1)
    }
    
    // const* routines add a new const value to the entry block.
    func (s *state) constSlice(t *types.Type) *ssa.Value {
    	return s.f.ConstSlice(t)
    }
    func (s *state) constInterface(t *types.Type) *ssa.Value {
    	return s.f.ConstInterface(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top