Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 579 for chains (0.2 sec)

  1. test/typeparam/chans.go

    // or the context is canceled, at which point the returned channel is closed.
    func _Merge[Elem any](ctx context.Context, c1, c2 <-chan Elem) <-chan Elem {
    	r := make(chan Elem)
    	go func(ctx context.Context, c1, c2 <-chan Elem, r chan<- Elem) {
    		defer close(r)
    		for c1 != nil || c2 != nil {
    			select {
    			case <-ctx.Done():
    				return
    			case v1, ok := <-c1:
    				if ok {
    					r <- v1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -I chain 2 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 117 bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4.golden

    -t table -N chain
    -t table -A chain -f foo -b bar
    -t table -I chain 2 -f foo -b bar
    -t table -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 150 bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -I chain 1 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 96 bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    * nat
    -A PREROUTING -f foo -b bar
    COMMIT
    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 135 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/teststdio/testdata/chain.out

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 115 bytes
    - Viewed (0)
  7. tests/testdata/certs/pilot/cert-chain.pem

    Jacek Ewertowski <******@****.***> 1666353045 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 21 11:50:45 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. samples/certs/cert-chain.pem

    Oliver Liu <******@****.***> 1523299220 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 09 18:40:19 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. security/samples/plugin_ca_certs/cert-chain.pem

    Tao Li <******@****.***> 1518720412 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:46:52 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. test/ken/chan.go

    		randx -= 1000000
    	}
    	return randx % n
    }
    
    type Chan struct {
    	sc, rc chan int // send and recv chan
    	sv, rv int      // send and recv seq
    }
    
    var (
    	nproc      int
    	nprocLock  sync.Mutex
    	cval       int
    	end        int = 10000
    	totr, tots int
    	totLock    sync.Mutex
    	nc         *Chan
    )
    
    func init() {
    	nc = new(Chan)
    }
    
    func changeNproc(adjust int) int {
    	nprocLock.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
Back to top