Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OutputLength (0.25 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

        /**
         * @return the outputData
         */
        public Decodable getOutputData () {
            return this.outputData;
        }
    
    
        /**
         * @return the outputLength
         */
        public int getOutputLength () {
            return this.outputLength;
        }
    
    
        /**
         * @return the inputData
         */
        public Decodable getInputData () {
            return this.inputData;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  2. tensorflow/c/eager/immediate_execution_operation.h

      virtual bool HasCustomDeviceInput() const = 0;
    
      virtual const tensorflow::OpDef* OpDef() const = 0;
    
      virtual Status InputLength(const char* input_name, int* length) = 0;
      virtual Status OutputLength(const char* output_name, int* length) = 0;
    
      // Set stack trace to be used for potential async error reporting.
      virtual void SetStackTrace(ManagedStackTrace stack_trace) = 0;
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 26 22:40:32 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

                                                    const char* output_name,
                                                    TF_Status* status) {
      int ret = -1;
      status->status = tensorflow::unwrap(op)->OutputLength(output_name, &ret);
      return ret;
    }
    
    void TFE_Execute(TFE_Op* op, TFE_TensorHandle** retvals, int* num_retvals,
                     TF_Status* status) {
      tensorflow::ImmediateExecutionOperation* unwrapped_op =
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
Back to top