Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bytesData (0.42 sec)

  1. cmd/object-handlers_test.go

    		metaData      map[string]string
    	}{
    		// case - 1.
    		{bucketName, objectName, int64(len(bytesData[0].byteData)), bytesData[0].byteData, bytesData[0].md5sum, make(map[string]string)},
    
    		// case - 2.
    		// used for anonymous HTTP request test.
    		{bucketName, anonObject, int64(len(bytesData[0].byteData)), bytesData[0].byteData, bytesData[0].md5sum, make(map[string]string)},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        parser.emitError(parser.getNameLoc(), "Hex string doesn't start with `0x`");
        return nullptr;
      }
    
      std::string bytes_data = absl::HexStringToBytes(data.substr(2));
      return ConstBytesAttr::get(parser.getBuilder().getContext(), bytes_data);
    }
    
    void ConstBytesAttr::print(mlir::AsmPrinter& printer) const {
      StringRef bytes_str = getValue();
      // Elide the attribute if flag is set.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top