Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 697 for pselect (0.2 sec)

  1. internal/grid/muxclient.go

    				continue
    			}
    			msg.Seq++
    		}
    	}
    
    	if errState {
    		// Drain requests.
    		for {
    			select {
    			case r, ok := <-requests:
    				if !ok {
    					return
    				}
    				PutByteBuffer(r)
    			default:
    				return
    			}
    		}
    	}
    
    	for !errState {
    		select {
    		case <-m.ctx.Done():
    			if debugPrint {
    				fmt.Println("Client sending disconnect to mux", m.MuxID)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRendererTest.groovy

        }
    
        private boolean bodyContains(String text) {
            def node = report.body().select("*").find { norm(it).contains(text) }
            node != null // this is just so that we can put a breakpoint for debugging
        }
    
        private boolean bodyContainsExact(String text) {
            def node = report.body().select("*").find { norm(it) == text }
            node != null // this is just so that we can put a breakpoint for debugging
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/generate.go

    	q.x.Set(x3)
    	q.y.Set(y3)
    	q.z.Set(z3)
    	return q
    }
    
    // Select sets q to p1 if cond == 1, and to p2 if cond == 0.
    func (q *{{.P}}Point) Select(p1, p2 *{{.P}}Point, cond int) *{{.P}}Point {
    	q.x.Select(p1.x, p2.x, cond)
    	q.y.Select(p1.y, p2.y, cond)
    	q.z.Select(p1.z, p2.z, cond)
    	return q
    }
    
    // A {{.p}}Table holds the first 15 multiples of a point at offset -1, so [1]P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_delta.go

    			resp, err := con.upstreamDeltas.Recv()
    			if err != nil {
    				upstreamErr(con, err)
    				return
    			}
    			select {
    			case con.deltaResponsesChan <- resp:
    			case <-con.stopChan:
    			}
    		}
    	}()
    
    	go p.handleUpstreamDeltaRequest(con)
    	go p.handleUpstreamDeltaResponse(con)
    
    	for {
    		select {
    		case err := <-con.upstreamError:
    			return err
    		case err := <-con.downstreamError:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/tfl_legalize_hlo.mlir

        %6 = mhlo.compare  GE, %arg1, %arg3 : (tensor<i32>, tensor<i32>) -> tensor<i1>
        %7 = mhlo.select %6, %arg1, %arg3 : tensor<i1>, tensor<i32>
        %8 = mhlo.compare  EQ, %arg1, %arg3 : (tensor<i32>, tensor<i32>) -> tensor<i1>
        %9 = mhlo.minimum %arg2, %arg4 : tensor<i32>
        %10 = mhlo.select %6, %arg2, %arg4 : tensor<i1>, tensor<i32>
        %11 = mhlo.select %8, %9, %10 : tensor<i1>, tensor<i32>
        mhlo.return %7, %11 : tensor<i32>, tensor<i32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

        private static final String BOOLEAN_PROMPT = "thing? (default: yes) [yes, no]"
        private static final String INT_PROMPT = "thing? (min: 2, default: 3)"
        private static final String SELECT_PROMPT = "select thing:"
        private static final String QUESTION_PROMPT = "what? (default: thing):"
    
        def setup() {
            buildFile << """
                def handler = services.get(${UserInputHandler.name})
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/stmt0.go

    	ch <- x
    }
    
    func selects() {
    	select {}
    	var (
    		ch chan int
    		sc chan <- bool
    	)
    	select {
    	case <-ch:
    	case (<-ch):
    	case t := <-ch:
    		_ = t
    	case t := (<-ch):
    		_ = t
    	case t, ok := <-ch:
    		_, _ = t, ok
    	case t, ok := (<-ch):
    		_, _ = t, ok
    	case <-sc /* ERROR "cannot receive from send-only channel" */ :
    	}
    	select {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

                return candidates;
            }
    
            @Override
            public CapabilityResolutionDetails select(ComponentVariantIdentifier candidate) {
                didSomething = true;
                selected = candidate;
                return this;
            }
    
            @Override
            public CapabilityResolutionDetails select(Object notation) {
                ComponentIdentifier componentIdentifier = notationParser.parseNotation(notation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. internal/s3select/sql/parser.go

    	// Translate doubled quotes
    	*qi = QuotedIdentifier(strings.ReplaceAll(r, `""`, `"`))
    	return nil
    }
    
    // Types representing AST of SQL statement. Only SELECT is supported.
    
    // Select is the top level AST node type
    type Select struct {
    	Expression *SelectExpression `parser:"\"SELECT\" @@"`
    	From       *TableExpression  `parser:"\"FROM\" @@"`
    	Where      *Expression       `parser:"( \"WHERE\" @@ )?"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. cmd/bucket-lifecycle.go

    		return fmt.Errorf("Select parameters can only be specified with SELECT request type")
    	}
    	if r.Type == SelectRestoreRequest && r.SelectParameters.IsEmpty() {
    		return fmt.Errorf("SELECT restore request requires select parameters to be specified")
    	}
    
    	if r.Type != SelectRestoreRequest && !r.OutputLocation.IsEmpty() {
    		return fmt.Errorf("OutputLocation required only for SELECT request type")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
Back to top