Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 733 for isSelect (0.12 sec)

  1. src/crypto/tls/ticket.go

    	//       CertificateChain verified_chains<0..2^24-1>; /* excluding leaf */
    	//       select (SessionState.early_data) {
    	//           case 0: Empty;
    	//           case 1: opaque alpn<1..2^8-1>;
    	//       };
    	//       select (SessionState.type) {
    	//           case server: Empty;
    	//           case client: struct {
    	//               select (SessionState.version) {
    	//                   case VersionTLS10..VersionTLS12: Empty;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    It explains:
    - Ways to control how the tests are run (Test execution)
    - How to select specific tests to run (Test filtering)
    - What test reports are generated and how to influence the process (Test reporting)
    - How Gradle finds tests to run (Test detection)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. pilot/pkg/status/distribution/reporter.go

    	}
    	d := distributionEvent{nonce: nonce, distributionType: distributionType, conID: conID}
    	select {
    	case r.distributionEventQueue <- d:
    		return
    	default:
    		scope.Errorf("Distribution Event Queue overwhelmed, status will be invalid.")
    	}
    }
    
    func (r *Reporter) readFromEventQueue(stop <-chan struct{}) {
    	for {
    		select {
    		case ev := <-r.distributionEventQueue:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/covdata/dump.go

    // and do any necessary setup operations.
    func (d *dstate) Setup() {
    	if *indirsflag == "" {
    		d.Usage("select input directories with '-i' option")
    	}
    	if d.cmd == textfmtMode || (d.cmd == percentMode && *textfmtoutflag != "") {
    		if *textfmtoutflag == "" {
    			d.Usage("select output file name with '-o' option")
    		}
    		var err error
    		d.textfmtoutf, err = os.Create(*textfmtoutflag)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. test/inline.go

    func select1(x, y chan bool) int { // ERROR "can inline select1" "x does not escape" "y does not escape"
    	select {
    	case <-x:
    		return 1
    	case <-y:
    		return 2
    	}
    }
    
    func select2(x, y chan bool) { // ERROR "can inline select2" "x does not escape" "y does not escape"
    loop: // test that labeled select can be inlined.
    	select {
    	case <-x:
    		break loop
    	case <-y:
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    // a cluster.
    func (c *PeerEndpointLeaseController) Start(stopCh <-chan struct{}) {
    	localStopCh := make(chan struct{})
    	go func() {
    		defer close(localStopCh)
    		select {
    		case <-stopCh: // from Start
    		case <-c.stopCh: // from Stop
    		}
    	}()
    	go c.Run(localStopCh)
    }
    
    // RunPeerEndpointReconciler periodically updates the peer endpoint leases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. internal/grid/grid_test.go

    				return
    			}
    			for {
    				select {
    				case <-nowBlocking:
    					return
    				case <-st.Done():
    				case st.Requests <- []byte{1}:
    					time.Sleep(10 * time.Millisecond)
    				}
    			}
    		}()
    	}
    	// Check that local returned.
    	err = st.Results(func(b []byte) error {
    		<-st.Done()
    		return ctx.Err()
    	})
    	mu.Lock()
    	select {
    	case <-nowBlocking:
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction.go

    	// start evicting Pods from tainted Nodes.
    	for {
    		select {
    		case <-stopCh:
    			return
    		case nodeUpdate := <-tc.nodeUpdateChannels[worker]:
    			tc.handleNodeUpdate(ctx, nodeUpdate)
    			tc.nodeUpdateQueue.Done(nodeUpdate)
    		case podUpdate := <-tc.podUpdateChannels[worker]:
    			// If we found a Pod update we need to empty Node queue first.
    		priority:
    			for {
    				select {
    				case nodeUpdate := <-tc.nodeUpdateChannels[worker]:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    	defer watchTimeout.Stop()
    	for i := 0; i < expectWatchers; i++ {
    		var watcher <-chan watchResponse
    
    		select {
    		case watcher = <-watchers:
    		default:
    			t.Fatalf("expect watcher count: %d, but got: %d", expectWatchers, i)
    		}
    
    		select {
    		case watchResp := <-watcher:
    			if watchResp.err != nil {
    				t.Fatalf("watch response got an unexepct error: %v", watchResp.err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    //   m = Shape(input)[-2]
    //   n = Shape(input)[-1]
    //   num_lower_or_m = Select(num_lower < 0, m, num_lower)
    //   num_upper_or_n = Select(num_upper < 0, n, num_upper)
    //   offset = ExpandDims(Range(0, m), -1) - Range(0, n)
    //   indicator = LogicalAnd(offset <= num_lower_or_m, offset >= -num_upper_or_n)
    //   return Select(indicator, input, ZerosLike(Input))
    // }
    def LowerMatrixBandPartOp : Pattern<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top