Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 733 for isSelect (0.24 sec)

  1. test/live.go

    func f10() string {
    	panic(1)
    }
    
    // liveness formerly confused by select, thinking runtime.selectgo
    // can return to next instruction; it always jumps elsewhere.
    // note that you have to use at least two cases in the select
    // to get a true select; smaller selects compile to optimized helper functions.
    
    var c chan *int
    var b bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/js/clipboard-1.7.1.min.js

    or(var r=0,a=o.length;r<a;r++)o[r].fn!==e&&o[r].fn._!==e&&i.push(o[r]);return i.length?n[t]=i:delete n[t],this}},e.exports=o},{}],7:[function(e,n,o){!function(i,r){if("function"==typeof t&&t.amd)t(["module","select"],r);else if(void 0!==o)r(n,e("select"));else{var a={exports:{}};r(a,i.select),i.clipboardAction=a.exports}}(this,function(t,e){"use strict";function n(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/fmt.go

    	OPRINT:            "print",
    	ORANGE:            "range",
    	OREAL:             "real",
    	ORECV:             "<-",
    	ORECOVER:          "recover",
    	ORETURN:           "return",
    	ORSH:              ">>",
    	OSELECT:           "select",
    	OSEND:             "<-",
    	OSUB:              "-",
    	OSWITCH:           "switch",
    	OUNSAFEADD:        "unsafe.Add",
    	OUNSAFESLICE:      "unsafe.Slice",
    	OUNSAFESLICEDATA:  "unsafe.SliceData",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    							/></option>
    					</select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    				<label for="as_occt" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_occt"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. src/net/net_fake.go

    	)
    	expired := ffd.readDeadline.Load().expired
    	select {
    	case <-expired:
    		return nil, os.ErrDeadlineExceeded
    	case incoming, ok = <-ffd.incoming:
    		if !ok {
    			return nil, ErrClosed
    		}
    		select {
    		case <-expired:
    			ffd.incoming <- incoming
    			return nil, os.ErrDeadlineExceeded
    		default:
    		}
    	case incoming, ok = <-ffd.incomingFull:
    		select {
    		case <-expired:
    			ffd.incomingFull <- incoming
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. tests/integration/README.md

    $ go test ./... --istio.test.select -customsetup
    ```
    
    You can "and" the predicates by separating with commas:
    
    ```console
    $ go test ./... --istio.test.select +customsetup,-postsubmit
    ```
    
    This will select tests that have ```label.CustomSetup``` only. It will **not** select tests that have both ```label.CustomSetup```
    and ```label.Postsubmit```.
    
    ### Running Tests on CI
    
    Istio's CI/CD system is composed of 2 parts:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. cni/pkg/install/install_test.go

    			ticker := time.NewTicker(500 * time.Millisecond)
    			defer ticker.Stop()
    			readyChan := make(chan bool)
    			go func(ctx context.Context, tick <-chan time.Time) {
    				for {
    					select {
    					case <-ctx.Done():
    						return
    					case <-tick:
    						if isReady.Load().(bool) {
    							readyChan <- true
    						}
    					}
    				}
    			}(ctx, ticker.C)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    	// c.done is close or not.
    	// Thus we cannot simply select from c.done and c.result and this
    	// would give us non-determinism.
    	// At the same time, we don't want to block infinitely on putting
    	// to c.result, when c.done is already closed.
    	//
    	// This ensures that with c.done already close, we at most once go
    	// into the next select after this. With that, no matter which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/advance.jsp

    							/></option>
    					</select>
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    				<label for="as_occt" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_occt"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. cmd/peer-rest-client.go

    	}
    	st.Results(func(b *grid.Bytes) error {
    		select {
    		case listenCh <- *b:
    		default:
    			// Do not block on slow receivers.
    			b.Recycle()
    		}
    		return nil
    	})
    }
    
    // Listen - listen on peers.
    func (client *peerRESTClient) Listen(ctx context.Context, listenCh chan<- []byte, v url.Values) {
    	go func() {
    		for {
    			client.doListen(ctx, listenCh, v)
    			select {
    			case <-ctx.Done():
    				return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top