Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for paid (0.07 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    // configure it in an expected way so that we have consistency and can make changes in the future as needed.
    // We could completely reject but that seems more likely to cause pain.
    func unexpectedWaypointListener(l k8s.Listener) bool {
    	if l.Port != 15008 {
    		return true
    	}
    	if l.Protocol != k8s.ProtocolType(protocol.HBONE) {
    		return true
    	}
    	return false
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	Hostname string `protobuf:"bytes,21,opt,name=hostname,proto3" json:"hostname,omitempty"`
    	// Network represents the network this workload is on. This may be elided for the default network.
    	// A (network,address) pair makeup a unique key for a workload *at a point in time*.
    	Network string `protobuf:"bytes,4,opt,name=network,proto3" json:"network,omitempty"`
    	// Protocol that should be used to connect to this workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
          %0 = "tf.ReadVariableOp"(%arg1) : (tensor<*x!tf_type.resource<tensor<4xf32>>>) -> tensor<4xf32>
        ```
    
        Then said `ReadVariableOp` is going to get replaced by:
    
        ```mlir
          %0 = "tf_device.launch"() ( {
            %2 = "tf.ReadVariableOp"(%arg1) : (tensor<*x!tf_type.resource<tensor<4xf32>>>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    //
    //   - Offset of the deferBits variable
    //   - Offset of the first closure slot (the rest are laid out consecutively).
    func (s *state) emitOpenDeferInfo() {
    	firstOffset := s.openDefers[0].closureNode.FrameOffset()
    
    	// Verify that cmpstackvarlt laid out the slots in order.
    	for i, r := range s.openDefers {
    		have := r.closureNode.FrameOffset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. RELEASE.md

            (`tf.float32`).
    *   NNAPI
        *   Adds NNAPI Delegation support for requantization use cases by converting
            the operation into a dequantize-quantize pair.
        *   Removes deprecated `Interpreter.setUseNNAPI(boolean)` Java API. Use
            `Interpreter.Options.setUseNNAPI` instead.
        *   Deprecates `Interpreter::UseNNAPI(bool)` C++ API. Use `NnApiDelegate()`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top