Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for opCh (0.13 sec)

  1. cmd/mrf.go

    // mrfState sncapsulates all the information
    // related to the global background MRF.
    type mrfState struct {
    	opCh chan partialOperation
    }
    
    // Add a partial S3 operation (put/delete) when one or more disks are offline.
    func (m *mrfState) addPartialOp(op partialOperation) {
    	if m == nil {
    		return
    	}
    
    	select {
    	case m.opCh <- op:
    	default:
    	}
    }
    
    var healSleeper = newDynamicSleeper(5, time.Second, false)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops.mlir

    // CHECK:      %[[OP_D:[a-z0-9]*]] = "tf.opD"
    // CHECK:      %[[OP_E:[a-z0-9]*]] = "tf.opE"
    // CHECK:      %[[OP_F:[a-z0-9]*]] = "tf.opF"
    // CHECK:      %[[OP_G:[a-z0-9]*]] = "tf.opG"
    // CHECK:      %[[OP_H:[a-z0-9]*]] = "tf.opH"
    // CHECK:      %[[OP_I:[a-z0-9]*]] = "tf.opI"
    // CHECK:      %[[OP_J:[a-z0-9]*]] = "tf.opJ"
    // CHECK:      %[[OP_K:[a-z0-9]*]] = "tf.opK"
    // CHECK:      %[[OP_L:[a-z0-9]*]] = "tf.opL"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top