Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 152 for selectA (0.18 sec)

  1. src/go/parser/parser.go

    	}
    
    	pos := p.expect(token.SELECT)
    	lbrace := p.expect(token.LBRACE)
    	var list []ast.Stmt
    	for p.tok == token.CASE || p.tok == token.DEFAULT {
    		list = append(list, p.parseCommClause())
    	}
    	rbrace := p.expect(token.RBRACE)
    	p.expectSemi()
    	body := &ast.BlockStmt{Lbrace: lbrace, List: list, Rbrace: rbrace}
    
    	return &ast.SelectStmt{Select: pos, Body: body}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/net/http/httputil/reverseproxy_test.go

    			if _, err := bufrw.WriteString(nthResponse(i)); err != nil {
    				select {
    				case <-triggerCancelCh:
    				default:
    					t.Errorf("Writing response #%d failed: %v", i, err)
    				}
    				return
    			}
    			bufrw.Flush()
    			time.Sleep(time.Second)
    		}
    		if _, err := bufrw.WriteString(terminalMsg); err != nil {
    			select {
    			case <-triggerCancelCh:
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. .bazelrc

    # specified".
    build:cross_compile_macos_x86 --extra_toolchains=//tensorflow/tools/toolchains/cross_compile/config:macos-x86-cross-compile-cc-toolchain
    # Map --platforms=darwin_x86_64 to --cpu=darwin and vice-versa to make selects()
    # and transistions that use these flags work.
    build:cross_compile_macos_x86 --platform_mappings=tensorflow/tools/toolchains/cross_compile/config/platform_mappings
    
    # RBE cross-compile configs for Darwin x86
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    							}
    
    							cases := []testCase{
    								{
    									// Make sure the bad policy did not select this workload.
    									path:  fmt.Sprintf("/policy-%s-%s-bad", to.Config().Namespace.Prefix(), to.Config().Service),
    									allow: false,
    								},
    								{
    									// Make sure the bad policy select this workload.
    									// Skip vm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    It explains:
    
     * Ways to control how the tests are run (<<#sec:test_execution,Test execution>>)
     * How to select specific tests to run (<<#test_filtering,Test filtering>>)
     * What test reports are generated and how to influence the process (<<#test_reporting,Test reporting>>)
     * How Gradle finds tests to run (<<#sec:test_detection,Test detection>>)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: %[[INNER_SELECT:.*]] = "tf.SelectV2"(%[[OR]], %[[ADD]], %[[ROUND_VAL]]) : (tensor<2xi1>, tensor<2xf32>, tensor<2xf32>) -> tensor<2xf32>
      // CHECK-DAG: %[[IS_ZERO:.*]] = "tf.Equal"(%[[INNER_SELECT]], %[[ZERO]]) <{incompatible_shape_error = true}>
      // CHECK-DAG: %[[SELECT:.*]] = "tf.SelectV2"(%[[IS_ZERO]], %[[ZERO]], %[[INNER_SELECT]])
      %0 = "tf.Round"(%arg0) : (tensor<2xf32>) -> tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  7. cmd/peer-rest-server.go

    	// We have however a dynamic downstream buffer (ch).
    	buf := bytes.NewBuffer(grid.GetByteBuffer())
    	enc := json.NewEncoder(buf)
    	tmpEvt := struct{ Records []event.Event }{[]event.Event{{}}}
    	for {
    		select {
    		case <-ctx.Done():
    			grid.PutByteBuffer(buf.Bytes())
    			return nil
    		case ev := <-ch:
    			buf.Reset()
    			tmpEvt.Records[0] = ev
    			if err := enc.Encode(tmpEvt); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    		}
    		p.setPos(s.Colon)
    		p.print(token.COLON)
    		p.stmtList(s.Body, 1, nextIsRBrace)
    
    	case *ast.SelectStmt:
    		p.print(token.SELECT, blank)
    		body := s.Body
    		if len(body.List) == 0 && !p.commentBefore(p.posFor(body.Rbrace)) {
    			// print empty select statement w/o comments on one line
    			p.setPos(body.Lbrace)
    			p.print(token.LBRACE)
    			p.setPos(body.Rbrace)
    			p.print(token.RBRACE)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	}
    	recordLen := int(header[3])<<8 | int(header[4])
    
    	record := make([]byte, recordLen)
    	if _, err := io.ReadFull(s, record); err != nil {
    		t.Fatal(err)
    	}
    
    	// Create a ServerHello that selects a different cipher suite than the
    	// sole one that the client offered.
    	serverHello := &serverHelloMsg{
    		vers:        VersionTLS12,
    		random:      make([]byte, 32),
    		cipherSuite: TLS_RSA_WITH_AES_256_GCM_SHA384,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    		// 5, a server can send a ChangeCipherSpec before its ServerHello, when
    		// c.vers is still unset. That's not useful though and suspicious if the
    		// server then selects a lower protocol version, so don't allow that.
    		if c.vers == VersionTLS13 {
    			return c.retryReadRecord(expectChangeCipherSpec)
    		}
    		if !expectChangeCipherSpec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top