Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 172 for ControlZ (0.18 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      STRICT = 2;
      // No ingress or sync.
      OFF = 3;
    }
    
    // Controls whether Istio policy is applied to Pilot.
    message PilotPolicyConfig {
      // Controls whether Istio policy is applied to Pilot.
      google.protobuf.BoolValue enabled = 1;
    }
    
    // Controls telemetry configuration
    message TelemetryConfig {
      // Controls whether telemetry is exported for Pilot.
      google.protobuf.BoolValue enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "ZW", controls: 1},                 // Control == 0, 32-bit
    		{name: "NZW", controls: 1},                // Control != 0, 32-bit
    		{name: "TBZ", controls: 1, aux: "Int64"},  // Control & (1 << AuxInt) == 0
    		{name: "TBNZ", controls: 1, aux: "Int64"}, // Control & (1 << AuxInt) != 0
    		{name: "FLT", controls: 1},
    		{name: "FLE", controls: 1},
    		{name: "FGT", controls: 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    run on TPU instead of CPU while still being compiled on host.
    ### `-tf-functional-control-flow-to-cfg`
    
    _Transform functional control flow Ops to MLIR Control Form Graph (CFG) form_
    
    ### `-tf-functional-control-flow-to-regions`
    
    _Transforms functional control flow operations to their region-based counterparts_
    
    This pass transforms functional control flow operations in the TensorFlow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// branch on condition
    		{name: "BRC", controls: 1, aux: "S390XCCMask"}, // condition code value (flags) is Controls[0]
    
    		// compare-and-branch (register-register)
    		//  - integrates comparison of Controls[0] with Controls[1]
    		//  - both control values must be in general purpose registers
    		{name: "CRJ", controls: 2, aux: "S390XCCMask"},   // signed 32-bit integer comparison
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        tf_executor.fetch %arg0, %arg1, %add, %mul, %control_barrier, %mul_control : tensor<!tf_type.resource<tensor<f32>>>, tensor<!tf_type.resource<tensor<f32>>>, tensor<f32>, tensor<f32>, !tf_executor.control, !tf_executor.control
      }
      // CHECK: return %[[GRAPH_OUT]]#0, %[[GRAPH_OUT]]#1, %[[GRAPH_OUT]]#2, %[[GRAPH_OUT]]#3, %[[GRAPH_OUT]]#4, %[[GRAPH_OUT]]#5
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // Control returns the security descriptor control bits.
    func (sd *SECURITY_DESCRIPTOR) Control() (control SECURITY_DESCRIPTOR_CONTROL, revision uint32, err error) {
    	err = getSecurityDescriptorControl(sd, &control, &revision)
    	return
    }
    
    // SetControl sets the security descriptor control bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. tensorflow/c/c_api.h

    // Get the number of control inputs to an operation.
    TF_CAPI_EXPORT extern int TF_OperationNumControlInputs(TF_Operation* oper);
    
    // Get list of all control inputs to an operation.  `control_inputs` must
    // point to an array of length `max_control_inputs` (ideally set to
    // TF_OperationNumControlInputs(oper)).  Returns the number of control
    // inputs (should match TF_OperationNumControlInputs(oper)).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  8. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-tooling-builders",
    					"execution-e2e-tests",
    					"declarative-dsl-provider",
    					"platform-native",
    					"version-control",
    					"file-watching",
    					"jacoco",
    					"ivy",
    					"testing-native",
    					"maven",
    					"integ-test"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    				// Complement the relations.
    				r = (lt | eq | gt) ^ r
    			}
    
    			// Check for i2 < max or max > i2.
    			var max *Value
    			if r == lt && control.Args[0] == i2 {
    				max = control.Args[1]
    			} else if r == gt && control.Args[1] == i2 {
    				max = control.Args[0]
    			} else {
    				continue
    			}
    
    			// Check condition 4 now that we have a
    			// candidate max. For this we can query the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      TF_RETURN_IF_ERROR(FindOutputImageOfEdgeDst(
          src_func_id, dst_func_id, node_images, edge->dst(), &dst_image));
    
      // If this is a control edge then copy it and return. Lift control edges onto
      // the enclosing call operator.
      if (edge->IsControlEdge()) {
        // Add the control edge, if we have not already added it, using the images
        // determined above (potentially call operators or RecvAtHost/SendFromHost).
        if (edges_added
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top