Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. .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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. common/scripts/metallb-native.yaml

                          service(s) for which ip pool can be used for ip allocation.
                        items:
                          description: A label selector is a label query over a set of
                            resources. The result of matchLabels and matchExpressions
                            are ANDed. An empty label selector matches all objects. A
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_USECI_SELECTSTRINGS DI_FLAGS = 0x08000000 // Use Class Installer Provided strings in the Select Device Dlg
    	DI_OVERRIDE_INFFLAGS   DI_FLAGS = 0x10000000 // Override INF flags
    	DI_PROPS_NOCHANGEUSAGE DI_FLAGS = 0x20000000 // No Enable/Disable in General Props
    
    	DI_NOSELECTICONS DI_FLAGS = 0x40000000 // No small icons in select device dialogs
    
    	DI_NOWRITE_IDS DI_FLAGS = 0x80000000 // Don't write HW & Compat IDs on install
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
Back to top