CN115129677A - Operator document synchronization method and device - Google Patents
Operator document synchronization method and device Download PDFInfo
- Publication number
- CN115129677A CN115129677A CN202211060925.6A CN202211060925A CN115129677A CN 115129677 A CN115129677 A CN 115129677A CN 202211060925 A CN202211060925 A CN 202211060925A CN 115129677 A CN115129677 A CN 115129677A
- Authority
- CN
- China
- Prior art keywords
- operator
- file
- document
- target
- assigned
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Granted
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/10—File systems; File servers
- G06F16/17—Details of further file system functions
- G06F16/178—Techniques for file synchronisation in file systems
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/60—Protecting data
- G06F21/64—Protecting data integrity, e.g. using checksums, certificates or signatures
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- Computer Security & Cryptography (AREA)
- General Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- Bioethics (AREA)
- Software Systems (AREA)
- Computer Hardware Design (AREA)
- General Health & Medical Sciences (AREA)
- Health & Medical Sciences (AREA)
- Data Mining & Analysis (AREA)
- Databases & Information Systems (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
Abstract
The application provides a method and a device for synchronizing operator documents, and relates to the technical field of computers. The method comprises the following steps: acquiring a file to be assigned and a target operator document of a preset target file; carrying out operator extraction on the target file to obtain a first operator set, and carrying out operator extraction on the file to be assigned to obtain a second operator set; carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature; and determining the operator document of the file to be assigned according to the operator pair and the target operator document. Therefore, the implementation of the implementation mode can automatically realize the synchronization of the operator documents, does not need manual participation, saves manpower and material resources and improves the development efficiency.
Description
Technical Field
The application relates to the technical field of computers, in particular to a method and a device for synchronizing operator documents.
Background
In the field of data science, the way structured data is processed can be extracted and encapsulated into data operators. For each data operator, a developer often needs to add an operator document of the operator into a code to explain the function and principle of the operator, the type, meaning and value range of input parameters, the type and value range of output results and the like. Writing a document for each data operator is important in actual production, as each operator may involve multiple parameters, and naming similar operators may differ greatly in the requirements of receiving the parameters. Synchronization of documents of existing data operators is often maintained manually by developers, e.g., an operator developer writes a unified operator document for the same operator with multiple implementations and copies the document into the code of all operators. When the number of operators written by a developer is large, such a maintenance manner is time-consuming, and manual document synchronization work needs to be performed for all the implementations of each operator. Therefore, the compiling and maintaining mode of the existing operator document is high in cost, and the development efficiency is reduced.
Disclosure of Invention
A first aspect of an embodiment of the present application provides a method for synchronizing operator documents, including:
acquiring a file to be assigned and a target operator document of a preset target file;
carrying out operator extraction on the target file to obtain a first operator set, and carrying out operator extraction on the file to be assigned to obtain a second operator set;
carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature;
and determining the operator document of the file to be assigned according to the operator pair and the target operator document.
In the implementation process, the method preferentially obtains a file to be assigned and a target operator document of a preset target file; carrying out operator extraction on the target file to obtain a first operator set, and carrying out operator extraction on the file to be assigned to obtain a second operator set; then, carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature; and finally, determining the operator document of the file to be assigned according to the operator pair and the target operator document. Therefore, the operator documents can be automatically synchronized by implementing the implementation mode, manual participation is not needed, manpower and material resources are saved, and the development efficiency is improved.
Further, the operator extraction on the target file to obtain a first operator set includes:
extracting all functions in the target file to obtain function data;
and carrying out operator identification on the function data to obtain a first operator set.
Further, the operator pair includes a first operator in the first set of operators and a second operator in the second set of operators that is paired with the first operator.
Further, the determining the operator document of the file to be assigned according to the operator pair and the target operator document includes:
determining first operator document data of the first operator according to the target operator document;
assigning the first operator document data to the second operator according to the operator pair to serve as second operator document data of the second operator;
and summarizing all the second operator document data to obtain the operator document of the file to be assigned.
Further, the obtaining of the target operator document of the file to be assigned and the pre-configured target file includes:
acquiring a file set to be assigned;
and determining one file with the operator document in the file set as a target file, and acquiring the target operator document of the target file.
A second aspect of the embodiments of the present application provides an operator document synchronization apparatus, where the operator document synchronization apparatus includes:
the acquisition unit is used for acquiring a file to be assigned and a target operator document of a preset target file;
the first extraction unit is used for carrying out operator extraction on the target file to obtain a first operator set;
the second extraction unit is used for carrying out operator extraction on the file to be assigned to obtain a second operator set;
the pairing unit is used for carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature;
and the determining unit is used for determining the operator document of the file to be assigned according to the operator pair and the target operator document.
In the implementation process, the device can acquire the file to be assigned and the target operator document of the preset target file through the acquisition unit; operator extraction is carried out on the target file through a first extraction unit, and a first operator set is obtained; operator extraction is carried out on the file to be assigned through a second extraction unit, and a second operator set is obtained; carrying out operator pairing on the first operator set and the second operator set through a pairing unit to obtain operator pairs with the same function signature; and determining the operator document of the file to be assigned according to the operator pair and the target operator document through a determining unit. Therefore, the implementation of the implementation mode can automatically realize the synchronization of the operator documents, does not need manual participation, saves manpower and material resources and improves the development efficiency.
Further, the first extraction unit includes:
the extraction subunit is used for extracting all functions in the target file to obtain function data;
and the identification subunit is used for carrying out operator identification on the function data to obtain a first operator set.
Further, the operator pair includes a first operator in the first set of operators and a second operator in the second set of operators that is paired with the first operator.
Further, the determining unit includes:
the second determining subunit is used for determining the first operator document data of the first operator according to the target operator document;
the assignment subunit is used for assigning the first operator document data to the second operator according to the operator pair to serve as the second operator document data of the second operator;
and the collecting subunit is used for collecting all the second operator document data to obtain the operator document of the file to be assigned.
Further, the acquisition unit includes:
the obtaining subunit is used for obtaining a file set to be assigned;
and the first determining subunit is used for determining one file with the operator document in the file set as a target file and acquiring the target operator document of the target file.
A third aspect of the embodiments of the present application provides an electronic device, including a memory and a processor, where the memory is used to store a computer program, and the processor runs the computer program to make the electronic device execute the method for synchronizing operator documents according to any one of the first aspect of the embodiments of the present application.
A fourth aspect of the present embodiment provides a computer-readable storage medium, which stores computer program instructions, where the computer program instructions, when read and executed by a processor, perform the method for synchronizing operator documents according to any one of the first aspect of the present embodiment.
An object of the embodiments of the present application is to provide a method and an apparatus for synchronizing operator documents, which can automatically implement synchronization of operator documents, do not require manual participation, save manpower and material resources, and thus improve development efficiency.
Drawings
To more clearly illustrate the technical solutions of the embodiments of the present application, the drawings that are required to be used in the embodiments of the present application will be briefly described below, it should be understood that the following drawings only illustrate some embodiments of the present application and therefore should not be considered as limiting the scope, and that those skilled in the art can also obtain other related drawings based on the drawings without inventive efforts.
Fig. 1 is a schematic flowchart of a method for synchronizing operator documents according to an embodiment of the present application;
FIG. 2 is a schematic diagram illustrating a modularization of a synchronization method for operator documents according to an embodiment of the present application;
fig. 3 is a schematic structural diagram of a synchronization apparatus for operator documents according to an embodiment of the present application.
Detailed Description
The technical solutions in the embodiments of the present application will be described below with reference to the drawings in the embodiments of the present application.
It should be noted that: like reference numbers and letters refer to like items in the following figures, and thus, once an item is defined in one figure, it need not be further defined and explained in subsequent figures. Meanwhile, in the description of the present application, the terms "first", "second", and the like are used only for distinguishing the description, and are not to be construed as indicating or implying relative importance.
Example 1
Referring to fig. 1, fig. 1 is a schematic flowchart illustrating a method for synchronizing operator documents according to an embodiment of the present disclosure. The operator document synchronization method comprises the following steps:
s101, acquiring a file set to be assigned.
S102, determining one file with the operator document in the file set as a target file, and acquiring the target operator document of the target file.
S103, extracting all functions in the target file to obtain function data.
And S104, performing operator identification on the function data to obtain a first operator set.
And S105, carrying out operator extraction on the file to be assigned to obtain a second operator set.
And S106, carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature.
In this embodiment, the operator pair includes a first operator in the first operator set and a second operator in the second operator set that is paired with the first operator.
S107, determining first operator document data of a first operator according to the target operator document.
And S108, assigning the first operator document data to the second operator according to the operator pair to serve as the second operator document data of the second operator.
And S109, summarizing all the second operator document data to obtain the operator document of the file to be assigned.
In this embodiment, the method provides a process for automatically supplementing operator documents, and operator documents of the same operator in different implementation systems can be automatically supplemented through the process. Therefore, a developer only needs to write a document for an operator in one of the implementation systems, and can automatically synchronize the document to all the same operators by means of the system provided by the invention. Meanwhile, when a developer needs to modify the document, the system can automatically synchronize the documents of other operators only by modifying the written operator document. The system ensures the consistency of operator documents and saves a great deal of document writing time of developers.
Referring to fig. 2, the application environment proposed based on the method of fig. 2 may include an operator extraction module, an operator matching module and a document extraction module. Specifically, the method may use Python language as a programming language, and implement the above steps in Python language.
In particular, the method can be written as a collection of operators of m different computational logics to be implementedFor these operators, if n different implementation systems need to be completed, n different files are stored in each different implementation system and recorded as. It can be seen that in any file f, there are m operators, and the set of these operators is denoted as。
Then, for any file F in F, the operator document set D should be the sum of the documents D of all the operators inside, that is to say. When a developer writes one of the files f1After all the operators in document D1, the system will use each operatorDocument ofAutomatic synchronization to operators in f2As its operator document. The specific process is as follows:
selecting a file F1 of the finished operator document in the F, and traversing the remaining files F2 and F3 … … fn in the F, wherein the initially processed operator documents are F1 and F2 respectively;
secondly, extracting operators in the files f1 and f2 by using an operator extraction module to obtain corresponding operator setsAnd. The operator extraction module can adopt various methods when being realized, the Python's library is used in the patent, all functions in f1 and f2 files are extracted and judged, and the functions are generatedAnd。
and thirdly, pairing operators l with the same operation logic by using an operator matching module. Operator collection for completed operator documentsEach operator inIn aSearching for operators with the same functional signatureAnd forming an operator pair by the two operators with the same name, and sending the operator pair to the document extraction module.
Fourthly, using a document extraction module to extract the documentsDocument ofExtracted and assigned to the operator in f2As its operator document. When the document extraction module is realized, the method is used for combining functionsOperator document ofWrite its doctrigng, then assign value by __ doc __Assign to. And (3) repeating the step (2) until all the paired operators have the same bound operator document, and then repeating the step (1) until all the operator files (F) in the step (F) have the operator document synchronization.
In this embodiment, the execution subject of the method may be a computing device such as a computer and a server, and is not limited in this embodiment.
In this embodiment, the main body of the method may also be an intelligent device such as a smart phone and a tablet computer, which is not limited in this embodiment.
It can be seen that the operator document synchronization method described in this embodiment can automatically synchronize operator documents for all operators in a plurality of operator files, so that the workload of the process is independent of the number of operators in each file, and depends only on the number of operator documents; furthermore, the method can greatly shorten the development period of writing documents by developers in engineering practice. Meanwhile, because the synchronization of the documents in all the operator files is bound on the same operator file, developers only need to modify the documents once according to the documents, so that the time-saving effect can be achieved, and the document consistency in all the documents can be guaranteed.
Example 2
Please refer to fig. 3, fig. 3 is a schematic structural diagram of a synchronization apparatus for operator documents according to an embodiment of the present application. As shown in fig. 3, the operator document synchronization apparatus includes:
the obtaining unit 210 is configured to obtain a file to be assigned and a target operator document of a preset target file;
a first extraction unit 220, configured to perform operator extraction on the target file to obtain a first operator set;
the second extraction unit 230 is configured to perform operator extraction on the file to be assigned to obtain a second operator set;
the pairing unit 240 is configured to perform operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature;
and the determining unit 250 is used for determining the operator document of the file to be assigned according to the operator pair and the target operator document.
As an alternative embodiment, the first extraction unit 220 includes:
an extraction subunit 221, configured to extract all functions in the target file to obtain function data;
and an identifying subunit 222, configured to perform operator identification on the function data to obtain a first operator set.
In this embodiment, the operator pair includes a first operator in the first operator set and a second operator in the second operator set that is paired with the first operator.
As an alternative embodiment, the determining unit 250 includes:
a second determining subunit 251 configured to determine, from the target operator document, first operator document data of the first operator;
an assignment subunit 252, configured to assign, according to the operator pair, the first operator document data to the second operator as second operator document data of the second operator;
and the summarizing subunit 253 is configured to summarize all the second operator document data to obtain the operator document of the file to be assigned.
As an optional implementation, the obtaining unit 210 includes:
an obtaining subunit 211, configured to obtain a file set to be assigned;
a first determining subunit 212, configured to determine one of the files in the file set that has an operator document as a target file, and obtain a target operator document of the target file.
In the embodiment of the present application, for explanation of a synchronization apparatus for operator documents, reference may be made to the description in embodiment 1, and details are not repeated in this embodiment.
It can be seen that, the operator document synchronization apparatus described in this embodiment can automatically synchronize operator documents for all operators in a plurality of operator files, so that the workload of the process is independent of the number of operators in each file and depends only on the number of operator documents; furthermore, the method can greatly shorten the development period of writing documents by developers in engineering practice. Meanwhile, because the synchronization of the documents in all the operator files is bound on the same operator file, developers only need to modify the documents once according to the documents, so that the time-saving effect can be achieved, and the document consistency in all the documents can be guaranteed.
An embodiment of the present application provides an electronic device, including a memory and a processor, where the memory is used to store a computer program, and the processor runs the computer program to make the electronic device execute the synchronization method for operator documents in embodiment 1 of the present application.
The embodiment of the present application provides a computer-readable storage medium, which stores computer program instructions, and when the computer program instructions are read and executed by a processor, the computer program instructions execute the synchronization method for operator documents in embodiment 1 of the present application.
In the several embodiments provided in the present application, it should be understood that the disclosed apparatus and method may be implemented in other manners. The apparatus embodiments described above are merely illustrative, and for example, the flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of apparatus, methods and computer program products according to various embodiments of the present application. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems which perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
In addition, functional modules in the embodiments of the present application may be integrated together to form an independent part, or each module may exist separately, or two or more modules may be integrated to form an independent part.
The functions, if implemented in the form of software functional modules and sold or used as a stand-alone product, may be stored in a computer-readable storage medium. Based on such understanding, the technical solution of the present application or portions thereof that substantially contribute to the prior art may be embodied in the form of a software product stored in a storage medium and including instructions for causing a computer device (which may be a personal computer, a server, or a network device) to execute all or part of the steps of the method according to the embodiments of the present application. And the aforementioned storage medium includes: a U-disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk or an optical disk, and other various media capable of storing program codes.
The above description is only an example of the present application and is not intended to limit the scope of the present application, and various modifications and changes may be made to the present application by those skilled in the art. Any modification, equivalent replacement, improvement and the like made within the spirit and principle of the present application shall be included in the protection scope of the present application. It should be noted that: like reference numbers and letters refer to like items in the following figures, and thus, once an item is defined in one figure, it need not be further defined and explained in subsequent figures.
The above description is only for the specific embodiments of the present application, but the scope of the present application is not limited thereto, and any person skilled in the art can easily conceive of the changes or substitutions within the technical scope of the present application, and shall be covered by the scope of the present application. Therefore, the protection scope of the present application shall be subject to the protection scope of the claims.
It is noted that, herein, relational terms such as first and second, and the like may be used solely to distinguish one entity or action from another entity or action without necessarily requiring or implying any actual such relationship or order between such entities or actions. Also, the terms "comprises," "comprising," or any other variation thereof, are intended to cover a non-exclusive inclusion, such that a process, method, article, or apparatus that comprises a list of elements does not include only those elements but may include other elements not expressly listed or inherent to such process, method, article, or apparatus. Without further limitation, an element defined by the phrase "comprising an … …" does not exclude the presence of other identical elements in a process, method, article, or apparatus that comprises the element.
Claims (10)
1. A method for synchronizing operator documents, comprising:
acquiring a file to be assigned and a target operator document of a preset target file;
carrying out operator extraction on the target file to obtain a first operator set, and carrying out operator extraction on the file to be assigned to obtain a second operator set;
carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature;
and determining the operator document of the file to be assigned according to the operator pair and the target operator document.
2. The method for synchronizing operator documents according to claim 1, wherein said operator extracting said target file to obtain a first operator set comprises:
extracting all functions in the target file to obtain function data;
and carrying out operator identification on the function data to obtain a first operator set.
3. A method of synchronizing an operator document according to claim 1, wherein said operator pair comprises a first operator in said first set of operators and a second operator in said second set of operators that is paired with said first operator.
4. The method for synchronizing operator documents according to claim 3, wherein said determining the operator document of said file to be assigned according to said operator pair and said target operator document comprises:
determining first operator document data of the first operator according to the target operator document;
assigning the first operator document data to the second operator according to the operator pair to serve as second operator document data of the second operator;
and summarizing all the second operator document data to obtain the operator document of the file to be assigned.
5. The operator document synchronization method according to claim 1, wherein the obtaining of the target operator document of the file to be assigned and the preconfigured target file comprises:
acquiring a file set to be assigned;
and determining one file with the operator document in the file set as a target file, and acquiring the target operator document of the target file.
6. An operator document synchronization apparatus, comprising:
the device comprises an acquisition unit, a storage unit and a processing unit, wherein the acquisition unit is used for acquiring a file to be assigned and a target operator document of a preset target file;
the first extraction unit is used for carrying out operator extraction on the target file to obtain a first operator set;
the second extraction unit is used for carrying out operator extraction on the file to be assigned to obtain a second operator set;
the pairing unit is used for carrying out operator pairing on the first operator set and the second operator set to obtain operator pairs with the same function signature;
and the determining unit is used for determining the operator document of the file to be assigned according to the operator pair and the target operator document.
7. The operator document synchronization apparatus according to claim 6, wherein the first extraction unit comprises:
the extraction subunit is used for extracting all functions in the target file to obtain function data;
and the identification subunit is used for carrying out operator identification on the function data to obtain a first operator set.
8. The operator document synchronization apparatus according to claim 6, wherein said acquisition unit comprises:
the obtaining subunit is used for obtaining a file set to be assigned;
and the first determining subunit is used for determining one file with the operator document in the file set as a target file and acquiring the target operator document of the target file.
9. An electronic device, characterized in that the electronic device comprises a memory for storing a computer program and a processor for executing the computer program to cause the electronic device to perform the method of synchronization of operator documents according to any of claims 1 to 5.
10. A readable storage medium, wherein computer program instructions are stored, which when read and executed by a processor, perform the method for synchronization of operator documents according to any one of claims 1 to 5.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202211060925.6A CN115129677B (en) | 2022-08-30 | 2022-08-30 | Operator document synchronization method and device |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
CN202211060925.6A CN115129677B (en) | 2022-08-30 | 2022-08-30 | Operator document synchronization method and device |
Publications (2)
Publication Number | Publication Date |
---|---|
CN115129677A true CN115129677A (en) | 2022-09-30 |
CN115129677B CN115129677B (en) | 2022-11-22 |
Family
ID=83387186
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
CN202211060925.6A Active CN115129677B (en) | 2022-08-30 | 2022-08-30 | Operator document synchronization method and device |
Country Status (1)
Country | Link |
---|---|
CN (1) | CN115129677B (en) |
Citations (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20070266062A1 (en) * | 2006-05-05 | 2007-11-15 | Hybir Inc. | Group based complete and incremental computer file backup system, process and apparatus |
CN103649945A (en) * | 2011-06-20 | 2014-03-19 | 微软公司 | Automatic synchronization of most recently used document lists |
US20190391960A1 (en) * | 2018-06-26 | 2019-12-26 | Hulu, LLC | Data Cluster Migration Using An Incremental Synchronization |
CN111259348A (en) * | 2020-02-20 | 2020-06-09 | 国网信息通信产业集团有限公司 | Method and system for safely running executable file |
CN113343312A (en) * | 2021-06-25 | 2021-09-03 | 工银科技有限公司 | Page tamper-proofing method and system based on front-end point burying technology |
WO2022095520A1 (en) * | 2020-11-05 | 2022-05-12 | 深圳壹账通智能科技有限公司 | Document editing method and device, server, terminal, and storage medium |
-
2022
- 2022-08-30 CN CN202211060925.6A patent/CN115129677B/en active Active
Patent Citations (6)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20070266062A1 (en) * | 2006-05-05 | 2007-11-15 | Hybir Inc. | Group based complete and incremental computer file backup system, process and apparatus |
CN103649945A (en) * | 2011-06-20 | 2014-03-19 | 微软公司 | Automatic synchronization of most recently used document lists |
US20190391960A1 (en) * | 2018-06-26 | 2019-12-26 | Hulu, LLC | Data Cluster Migration Using An Incremental Synchronization |
CN111259348A (en) * | 2020-02-20 | 2020-06-09 | 国网信息通信产业集团有限公司 | Method and system for safely running executable file |
WO2022095520A1 (en) * | 2020-11-05 | 2022-05-12 | 深圳壹账通智能科技有限公司 | Document editing method and device, server, terminal, and storage medium |
CN113343312A (en) * | 2021-06-25 | 2021-09-03 | 工银科技有限公司 | Page tamper-proofing method and system based on front-end point burying technology |
Non-Patent Citations (1)
Title |
---|
刘云龙等: "不确定Delta算子系统的滑模软切换控制", 《计算机科学》 * |
Also Published As
Publication number | Publication date |
---|---|
CN115129677B (en) | 2022-11-22 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
CN108536745B (en) | Shell-based data table extraction method, terminal, equipment and storage medium | |
CN106991100B (en) | Data import method and device | |
CN107479881B (en) | Method for synchronizing difference codes, storage medium, electronic device and system | |
WO2014058805A1 (en) | System and method for recursively traversing the internet and other sources to identify, gather, curate, adjudicate, and qualify business identity and related data | |
CN106843820B (en) | Code processing method and device | |
CN105493095A (en) | Adaptive and recursive filtering for sample submission | |
CN106557307B (en) | Service data processing method and system | |
CN109739828B (en) | Data processing method and device and computer readable storage medium | |
CN109472540B (en) | Service processing method and device | |
CN112579623B (en) | Method, device, storage medium and equipment for storing data | |
CN105975493A (en) | File combination method and apparatus | |
CN106156794B (en) | Character recognition method and device based on character style recognition | |
CN110737437A (en) | compiling method and device based on code integration | |
CN112965939A (en) | File merging method, device and equipment | |
CN111984666B (en) | Database access method, apparatus, computer readable storage medium and computer device | |
CN111897828A (en) | Data batch processing implementation method, device, equipment and storage medium | |
CN106648839A (en) | Method and device for processing data | |
CN110989999A (en) | Code generation method and device, electronic equipment and medium | |
CN115129677B (en) | Operator document synchronization method and device | |
CN108280355A (en) | A kind of data desensitization method and device | |
CN108845862A (en) | Multi-container management method and device | |
CN108897858A (en) | The appraisal procedure and device, electronic equipment of distributed type assemblies index fragment | |
CN113064943A (en) | Data acquisition method and device, electronic equipment and storage medium | |
CN110019357B (en) | Database query script generation method and device | |
CN116226921A (en) | Desensitization processing method and device |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
PB01 | Publication | ||
PB01 | Publication | ||
SE01 | Entry into force of request for substantive examination | ||
SE01 | Entry into force of request for substantive examination | ||
GR01 | Patent grant | ||
GR01 | Patent grant |