Technologies described herein reduce the size of a software application. In some embodiments, the size of one or more resource files of an application are reduced. resource files include key/value pairs that define elements of the application. In some embodiments, the application's source code is analyzed to determine if an entry in a resource file may be removed. For instance, initialization functions in the application's source code may be analyzed to determine if a value loaded from a resource file is replaced before being used. For example, a button with a color property may be defined as grey by a resource, but later set to orange in an initialization function. In this case, the resource entry defining the button as grey is superfluous and may be safely removed. This technique allows for entries to be removed from a resource file even though the source code references the entries.
|
14. A computer-implemented method of optimizing an application, comprising:
identifying, within an initialization function, a variable that was set to a value retrieved from a resource file, wherein the initialization function is part of a source code listing used to compile the application;
analyzing the initialization function to determine whether the value will be used by the application at run-time based on whether the variable is overwritten in the initialization function; and
when it is determined that the value will not be used by the application at run-time, deleting the value from the resource file.
1. A computer-implemented method of optimizing an application, comprising:
identifying, within a source code of the application, a reference to a first resource value retrieved from a resource file;
analyzing the source code to determine whether, at run-time, the first resource value will be overwritten by the application with a second resource value before the first resource value is used by the application; and
when it is determined that the first resource value will be overwritten with the second resource value before the first resource value is used by the application, deleting the first resource value from the resource file.
11. A system comprising:
one or more processing units; and
a computer-readable medium having encoded thereon computer-executable instructions to cause the one or more processing units to:
identify a plurality of resource groups that are listed in a first order in a first resource file, wherein a resource group includes one or more resource values in a defined order;
determine a second order of the plurality of resource groups, the second order listing the plurality of resource groups so as to maximize a number of resource values that are duplicated between adjacent resource groups in the listed second order;
remove at least one duplicated resource value from at least one resource group of a pair of adjacent resource groups in the listed second order; and
generate a second resource file comprising the plurality of resource groups in the second order.
2. The computer-implemented method of
3. The computer-implemented method of
4. The computer-implemented method of
5. The computer-implemented method of
6. The computer-implemented method of
7. The computer-implemented method of
8. The computer-implemented method of
9. The computer-implemented method of
10. The computer-implemented method of
12. The system of
13. The system of
15. The computer-implemented method of
16. The computer-implemented method of
17. The computer-implemented method of
18. The computer-implemented method of
determining whether the resource file includes connections between a user supplied programming object and graphical elements defined in the resource file; and
when it is determined that the resource file does not include connections between a user supplied programming object and graphical elements defined in the resource file, removing a placeholder entry from the resource file that links user supplied programming objects with graphical elements defined in the resource file.
19. The computer-implemented method of
20. The computer-implemented method of
|
Modern software applications can include a large number of features. As a result, such applications can be very large in size, sometimes hundreds of megabytes or even gigabytes. As a result, software applications can consume significant computing resources, such as storage space. Significant network bandwidth can also be consumed when large application programs are transmitted between computing devices, resulting in significant monetary costs. Users might also prioritize large software applications for deletion as compared to smaller applications when storage is limited.
Many techniques have been utilized previously to reduce the size of software applications, including dead code stripping, file compression, and feature removal. However, these techniques are not always applicable or effective. For example, dead code stripping is applied during compilation, and as such does not affect code written in non-compiled (i.e. interpreted) languages. Similarly, code that is compiled “just in time”, after being downloaded to a client device, will not reduce the size of the download. Dead code stripping is also limited by relying on code-flow analysis, which does not consider something safe to remove if it is later referenced by the application. File compression is limited in effectiveness by the type of data being compressed, and has the added expense of requiring an expensive decompression step on the client.
However, even if these previous techniques have been applied, users and producers may still benefit from a further reduced software application size. As such, there persists a need to further reduce the size of software application size. It is with respect to these and other considerations that the disclosure made herein is presented.
Technologies described herein reduce the size of a software application. Generally described, the techniques disclosed herein can reduce the size of an application through an analysis of source code and a resource file that enables the removal of data from the resource file that is determined to be duplicative or unused during runtime. Reducing file size has many technological benefits: memory, processing, and power efficiency are improved. Download size—the number of bytes transferred over a network to distribute the software application to a client device, and install size—the number of bytes used to store the application on the client device, are reduced. End users experience faster download times, faster launch times, and increased responsiveness. Developers attract and retain performance sensitive customers while reducing distribution costs.
In some embodiments, one or more resource files, such as but not limited to an iOS®/macOS® .nib or storyboard, or a Windows® .rc file, are reduced in size. Resource files include key/value pairs that define elements of an application. For example, a resource file may define a size and location of a view, a color of a button, or a weight and style of a font. Often, a resource file is generated by a visual designer, which can be an application program that enables a user interface to be constructed using mouse and keyboard input. An application may have tens, hundreds, or more resource files, such that even small reductions in the size of the resource files may have a large effect on the size of an application.
In some embodiments, an application's source code is analyzed to determine if an entry in a resource file used by the application may be removed. An initialization function in the application's source code may be analyzed to determine if a value loaded from a resource file is replaced before being used. For example, a button with a color property may be defined as grey by a resource, but later set to orange at execution time by an initialization function. In this case, the resource entry defining the button as grey is superfluous and may be safely removed. In this embodiment, entries may be removed from a resource file even though the application's source code contains a reference to the entries.
By applying the techniques discussed herein, real world savings of 50 kb have been observed for a set of already heavily optimized resource files that were collectively 1.5 mb in size. However, greater or lesser savings may be achieved based on the number of resource files included in a given application, the size of those resource files, the frequency of elements with values that were overwritten, etc. This improves on existing techniques that analyze a resource file in isolation, or based on tools that only remove values that are not referenced by the application.
It should be appreciated that the above-described subject matter can be implemented as a computer-controlled apparatus, a computer-implemented method, a computing device, or as an article of manufacture such as a computer-readable medium. These and various other features will be apparent from a reading of the following Detailed Description and a review of the associated drawings.
This Summary is provided to introduce a selection of concepts in a simplified form that are further described below in the Detailed Description. This Summary is not intended to identify key features or essential features of the claimed subject matter, nor is it intended that this Summary be used to limit the scope of the claimed subject matter. Furthermore, the claimed subject matter is not limited to implementations that solve any or all disadvantages noted in any part of this disclosure.
The Detailed Description is described with reference to the accompanying figures. In the figures, the left-most digit(s) of a reference number identifies the figure in which the reference number first appears. The same reference numbers in different figures indicate similar or identical items.
The following Detailed Description describes technologies that reduce the size of an application. Technical benefits include improving memory, processing, and power efficiency. Download size, the number of bytes transferred over a network to distribute the software application to a client device, and install size, the number of bytes used to store the application on the client device, are reduced. End users experience faster download times, faster launch times, and increased responsiveness. Developers attract and retain performance sensitive customers while reducing distribution costs.
In common development scenarios, resource files are generated by a developer tool such as Apple® Xcode® or Microsoft® Visual Studio®. For example, Xcode allows a developer to visually define, with keyboard and mouse, the size, location, color, text, and other properties of graphical elements that are part of a user interface. These properties are stored in a resource file, such that at runtime, objects representing the elements may be recreated as they were defined in Xcode. Non-visual elements may also have properties defined in a resource file.
In a resource file, resources are commonly stored as key/value pairs, grouped by element. Elements may be nested, allowing a tree of elements to be defined. For example, a ‘UIView’ element may include key/value pairs for ‘Bounds’ (boundaries)={0.0, 0.0, 375.0, 50.0} and ‘Center’={187.5, 85.0}. In addition to defining literal values, elements may define ‘SubViews’, which point to one or more child element that each have their own list of key/value pairs. The ‘UIView’ element may have child labels, child buttons, or other graphical elements.
In some embodiments, at runtime, the key/value pairs associated with an element are used to instantiate associated runtime objects. In some embodiments, the associations are defined in the resource file as a list of connections—i.e. a list that maps class member variables to elements in the resource file. Based on this mapping, values are copied from the resource file to the corresponding object properties. For example, a resource file may include a textbox element having a text property defined as “the quick brown fox jumps over the lazy dog”. In this way, at runtime, the ‘Text’ property of the corresponding textbox object is set to this string. In some embodiments, this loading process occurs before user-defined initialization functions are executed.
However, once the user defined initialization function is called, the application may overwrite a value that originated in a resource file. This may be done for several reasons: to localize a string, to implement a UI customization (e.g. a ‘skin’), because the value stored in the resource file is a default inserted by a developer tool that was never intended for use, or any other reason.
The discussion above describes the context of the claimed techniques for reducing software application size discussed below. If an assignment happens within an initialization function, the value that was loaded from the resource file will be overwritten before it is used by the rest of the application, and so the key/value pair can be safely removed from the resource file. Continuing the example, if, in an initialization function, the developer overwrites the ‘Text’ property of the textbox object with the string “One fish, two fish, red fish, blue fish”, then the string “the quick brown fox jumps over the lazy dog” can safely be removed from the resource file. Then, upon execution, all other properties of the textbox object will be loaded from the resource file, e.g. location, size, etc., but not the text itself. Thus the textbox object will be generated as if “the quick brown fox jumps over the lazy dog” was never added to the resource file in the first place.
Other information stored in a resource file may be similarly optimized. For example, data describing the state of an element, such as whether it is hidden or visible, may be encoded in a resource file. If this state is explicitly set in the initialization function, causing the value from the resource file to be overwritten, then the state value in the resource file may be removed without impacting execution of the application. Similarly, checkbox state may have a default value set by the resource file that is overwritten in the initialization function, allowing the resource value representing this state to be deleted from the resource file. Images, or file path references to images, may be similarly pruned from a resource file if it is determined that they are overwritten in an initialization function.
In one embodiment, when the application targets the iOS® or MacOS® platform, analysis may be performed on an initialization function such as ‘ViewDidLoad’ or ‘AwakeFromNib’. However, any user defined function that executes after initialization from a resource file, but before any other user defined code, is similarly contemplated.
As discussed above, in some embodiments, developer tools generate resource files that include values used at design time but not at run time. These values may be defaults introduced by a design tool, or they may be added by a developer at design time to better visualize what a graphical element will look like at run-time. To a traditional code-flow analysis, these default values are referenced by the application (i.e. the properties populated by the default values are referenced by the application), and so previous techniques for identifying unused values would not recognize these replaced values as superfluous.
Turning now to
Turning now to
As depicted, the properties of description label 242 are being edited, such as text 250, color 252, font 254, dynamic type 256, enabled state 258, hidden state 260, and alignment 262. State, such as Boolean values enabled 258 and hidden 260, may be indicated with a check-box. For each graphical element, location, size, and other properties are derived from the position of the graphical elements within visual editor 206 and stored in a corresponding resource file 110 as key/value pairs. Similarly, properties listed in properties window 208 are stored in the corresponding resource file 110 as key/value pairs.
In some embodiments, element tree 204 depicts a hierarchy of graphical elements as they have been laid out by a developer. This hierarchy is reflected in the generated resource file 110. As depicted, graphical element UIView 216 is a parent element, representing the top-level graphical element depicted in visual editor 206. Child elements include Login_Header 218, TitleLabel 238, View 222, CenterImageView 240, DescriptionLabel 242, SubmitButton 246, and BrowseEventsButton 236. CenterImageView 240 itself has child graphical elements, including Constraint 226, which includes width 80 (pixels) 228 and height 80 230.
Turning now to
Resource file 110 depicts a resource file as generated by a compiler, but before the optimizations described herein have been applied. For example, element 42, “UILabel”, has the key/value pair “UIBounds={0.0, 0.0, 42.0, 21.0}. This property represents the boundary of the UILabel graphical element, and is an example of a data literal stored in the resource file. At the same time, the “UIText” Key under entry 42 (“UILabel”) has a Value of “@14”, where the ‘@’ sign indicates that “14” refers to element 14 of the resource file (i.e. “14 NSString”).
Turning now to
For example, “self descriptionlabel.text” is a property on the “descriptionlabel” element included in the view being loaded. The value of this property has already been set to a value retrieved from resource file 102, e.g. “the quick brown fox jumped over the lazy dog”. However, by determining that this property of the “descriptionlabel” element is being overwritten in the initialization function, resource file reducer 112 may conclude that the entry containing “the quick brown fox . . . ” can be removed.
A similar analysis can be performed on other types of information stored in the resource file. For example, “self.browserEventsButton.hidden=NO” sets the hidden property of the browserEventsButton to no. As this assignment is happening in code in initialization function 402, there is no use for a value stored in the resource file, whether or not the value in the resource file is different from the value set in initialization function 402.
Turning now to
Resource file 110 also depicts other types of key/value pairs being deleted. For example, entry 64 has the property “UIHidden=true”, which was set based on the checkbox next to the Hidden state 260 as indicated in
Block 601, discussed in more detail below in conjunction with
For example, Title Label 238, a label element, may have a “Font” property that describes the font, e.g. Arial, Times New Roman, etc., used by the label. An associated runtime object, e.g. “titleLabel”, may have a corresponding “.font” property. A correspondence between the “Font” property in the resource file and the “.font” property on the corresponding runtime object may be based on a text comparison. When such a correspondence exists, it is determined that the “Font” property of the resource file has been used to initialize the “titleLabel.font” property of the runtime object.
At block 703, the system analyzes the initialization function 402 to determine if the variable (e.g. member variable “titleLabel.font”) is overwritten. Assignment statements may appear in many ways, such as with an overloaded ‘=’ operator, a copy function, or the like. Assignment statements may be identified based on an abstract syntax tree of the initialization function, based on a text comparison, or the like.
The source of the value assigned to the “titleLabel.font” property is immaterial. The value overwriting the identified variable may be a constant, loaded from a table, or generated dynamically based on other values in the resource file. Also, the data type of the value is immaterial—strings, numbers, and complex data types are similarly contemplated.
At block 705, when it is determined that the value is overwritten in the initialization function, the value is deleted from the resource file. In one embodiment, the value is deleted from the resource file by reading the resource file into memory, removing key/value pairs associated with the identified variable, and writing out a new modified copy of the resource file. However, the original resource file may also be edited in place.
In some embodiments, the key/value pair associated with the identified variable is removed. However, the resource file may be scanned to locate any references (i.e. “@xxx” values) that point to the key/value pair, and delete these as well. Then, at block 707, the application, with the modified resource file is distributed to end users for execution.
Entries may be safely removed from a resource file based on other criteria. For example, an abstract syntax tree may be created from the source code used to compile the application, and a code-flow analysis applied to determine if a value loaded from a resource file is ever used. This analysis may determine if the value is overwritten outside of designated initialization functions, or if the value is simply unreferenced.
In other embodiments, values associated with orphaned User Interface (UI) elements may be identified and removed. Orphaned UI elements may be introduced accidentally, e.g. left behind after implementing “AB testing”. AB testing inserts different versions of a user interface into an application for evaluation by actual end users. Once, based on end user data, a preferred user interface is identified, the remaining UI elements are intended to be removed, but may remain in the application unintentionally. In these cases, a code-flow analysis may determine that a particular value is never used, and so the corresponding entries may be removed from the resource file.
In some embodiments, the order of resource values (e.g. key/value pairs) in a resource collection (e.g. an element) does not impact runtime behavior, in which case the resource values may be re-ordered before or after the resource file has been generated. Similarly, in some embodiments, the order of resource groups in a resource file does not impact runtime behavior, and as such may be re-ordered before or after the resource file has been generated.
At block 803, the plurality of resource groups are ordered so as to maximize a number of ordered resource values that are duplicated in an adjacent resource group. This allows adjacent groups to include the same instance of the duplicated resource values, allowing one of the two copies of the duplicated resource values to be deleted from the resource file. In some embodiments, a resource file lists resource values in a single global list, and defines elements with a pointer to the global resource values list and a number of (i.e. count of) resource values to be included.
For example, if there are three elements in a resource file, the first having the resource values A, B, C, and D (in that order), the second having Y and Z, and the third having C, D, E, the elements may be re-ordered so that the first and third elements are adjacent. Moreover, the elements are re-ordered such that the resource values in common (C and D) are adjacent—i.e. the final order is (first), (third), (second), not (third), (first), (second).
This optimization may be applied to any number of elements in the resource file. In some embodiments, different orderings produce different amounts of resource value overlap, and so some or all of the permutations may be tried to maximize the total amount of overlap.
In some embodiments, an element may completely overlap with one or both neighbors, such that all constituent resource values are shared with one or both adjacent neighbors. In some embodiments, duplicate values may span more than a single neighbor in the same direction. For example, instead of a third element having C, D, E, if the third element had resource value C while a fourth element had resource values D, E, then a final arrangement of elements could be (first), (third), (fourth), (second), to allow the resource values C and D from the first element to overlap with the C from the (third) and the D from the (fourth) elements.
In addition to re-ordering elements, resource values within elements may be re-ordered to maximize the number of duplicate values along adjacent elements. For example, a label element may have properties such as “Bounds”={0.0, 0.0, 0.0, 0.0}, “Center”={0.0, 0.0}, “Text”=“foobar”, “Font”=“Arial”, and “TextColor”=“Red”, among others, while a button element may have properties such as “Bounds”={0.0, 0.0, 50.0, 80.0}, “Center”={0.0, 0.0}, “Text”=“Ok”, “Font”=“Arial”, and “TextColor”=“Blue”. In this example, two of the five properties share a name and a value, “Center” and “Font”. To facilitate overlap between the label and the button, and because properties may be arranged in any order, the label element may use the order “Bounds”, “Text”, “TextColor”, “Center”, “Font”, while the button may use the order “Font”, “Center”, “Bounds”, “Text”, “TextColor”. In this way, the “Center” and “Font” properties are on the right side of the label element and the left side of the adjacent button element. Note that, because order of resource values does not matter, the button may also have been ordered “Center”, “Font”, “Bounds”, “Text”, “TextColor” with equivalent results. In this scenario, the resource file may be edited such that the label element and the button element point to the same “Center” and “Font” properties.
At block 805, resource values that are duplicated in an adjacent resource group are removed. In some embodiments, the duplicated resource values are removed by generating a new global list of resource values without the duplicate entries.
At block 807, a resource value list based on the determined order of the plurality of resource groups is generated. In some embodiments, a resource file is generated that includes the new ordering of resource groups, with some or all of the resource groups defined by the new global list of resource values.
At block 901, a placeholder element is identified within a resource file. Resource files may include placeholder values that are not themselves resources, but server as placeholders for one or more resources. For example, file's owner and first responder placeholders appear in all .nib files. They establish connections between a view (a canvas that contains graphical elements such as buttons, labels, etc.) and a class name referenced in source code. This is one way in which the application's source code can reference properties in the resource file. However, there are other ways for source code to reference a property in a resource file, such that particular placeholder elements take up space without providing a useful function.
At block 903, a determination is made whether a placeholder value is being used. In some embodiments, a determination is made that the placeholder value is not in use by searching a global list of connections included in the resource file. If any connections have the placeholder as the source or destination of the connection, then the data identifying the file's owner cannot be removed. Otherwise, the placeholder may be deleted from the resource file. In some embodiments, removing placeholder entries from the resource file is performed post-compilation, to avoid rules enforced by the compiler that require the placeholder values.
At block 905, when it is determined that the placeholder element is not in use, the placeholder element is removed from the resource file.
The computer architecture 1000 illustrated in
The mass storage device 1012 is connected to the CPU 1002 through a mass storage controller (not shown) connected to the bus 1010. The mass storage device 1012 and its associated computer-readable media provide non-volatile storage for the computer architecture 1000. Although the description of computer-readable media contained herein refers to a mass storage device, such as a solid-state drive, a hard disk or CD-ROM drive, it should be appreciated by those skilled in the art that computer-readable media can be any available computer storage media or communication media that can be accessed by the computer architecture 1000.
Communication media includes computer readable instructions, data structures, program modules, or other data in a modulated data signal such as a carrier wave or other transport mechanism and includes any delivery media. The term “modulated data signal” means a signal that has one or more of its characteristics changed or set in a manner as to encode information in the signal. By way of example, and not limitation, communication media includes wired media such as a wired network or direct-wired connection, and wireless media such as acoustic, RF, infrared and other wireless media. Combinations of the any of the above should also be included within the scope of computer-readable media.
By way of example, and not limitation, computer storage media may include volatile and non-volatile, removable and non-removable media implemented in any method or technology for storage of information such as computer-readable instructions, data structures, program modules or other data. For example, computer media includes, but is not limited to, RAM, ROM, EPROM, EEPROM, flash memory or other solid state memory technology, CD-ROM, digital versatile disks (“DVD”), HD-DVD, BLU-RAY, or other optical storage, magnetic cassettes, magnetic tape, magnetic disk storage or other magnetic storage devices, or any other medium which can be used to store the desired information and which can be accessed by the computer architecture 1000. For purposes of the claims, the phrase “computer storage medium,” “computer-readable storage medium” and variations thereof, does not include waves, signals, and/or other transitory and/or intangible communication media, per se.
According to various techniques, the computer architecture 1000 may operate in a networked environment using logical connections to remote computers through a network 1050 and/or another network (not shown). The computer architecture 1000 may connect to the network 1050 through a network interface unit 1016 connected to the bus 1010. It should be appreciated that the network interface unit 1016 also may be utilized to connect to other types of networks and remote computer systems. The computer architecture 1000 also may include an input/output controller 1018 for receiving and processing input from a number of other devices, including a keyboard, mouse, or electronic stylus (not shown in
It should be appreciated that the software components described herein may, when loaded into the CPU 1002 and executed, transform the CPU 1002 and the overall computer architecture 1000 from a general-purpose computing system into a special-purpose computing system customized to facilitate the functionality presented herein. The CPU 1002 may be constructed from any number of transistors or other discrete circuit elements, which may individually or collectively assume any number of states. More specifically, the CPU 1002 may operate as a finite-state machine, in response to executable instructions contained within the software modules disclosed herein. These computer-executable instructions may transform the CPU 1002 by specifying how the CPU 1002 transitions between states, thereby transforming the transistors or other discrete hardware elements constituting the CPU 1002.
Encoding the software modules presented herein also may transform the physical structure of the computer-readable media presented herein. The specific transformation of physical structure may depend on various factors, in different implementations of this description. Examples of such factors may include, but are not limited to, the technology used to implement the computer-readable media, whether the computer-readable media is characterized as primary or secondary storage, and the like. For example, if the computer-readable media is implemented as semiconductor-based memory, the software disclosed herein may be encoded on the computer-readable media by transforming the physical state of the semiconductor memory. For example, the software may transform the state of transistors, capacitors, or other discrete circuit elements constituting the semiconductor memory. The software also may transform the physical state of such components in order to store data thereupon.
As another example, the computer-readable media disclosed herein may be implemented using magnetic or optical technology. In such implementations, the software presented herein may transform the physical state of magnetic or optical media, when the software is encoded therein. These transformations may include altering the magnetic characteristics of particular locations within given magnetic media. These transformations also may include altering the physical features or characteristics of particular locations within given optical media, to change the optical characteristics of those locations. Other transformations of physical media are possible without departing from the scope and spirit of the present description, with the foregoing examples provided only to facilitate this discussion.
In light of the above, it should be appreciated that many types of physical transformations take place in the computer architecture 1000 in order to store and execute the software components presented herein. It also should be appreciated that the computer architecture 1000 may include other types of computing devices, including hand-held computers, embedded computer systems, personal digital assistants, and other types of computing devices known to those skilled in the art. It is also contemplated that the computer architecture 1000 may not include all of the components shown in
In closing, although the various techniques have been described in language specific to structural features and/or methodological acts, it is to be understood that the subject matter defined in the appended representations is not necessarily limited to the specific features or acts described. Rather, the specific features and acts are disclosed as example forms of implementing the claimed subject matter.
Patent | Priority | Assignee | Title |
11645058, | Oct 16 2018 | Ebay Inc. | User interface resource file optimization |
Patent | Priority | Assignee | Title |
5295065, | Jun 01 1990 | Freescale Semiconductor, Inc | Resource-lot association coordinator |
5790778, | Aug 07 1996 | Microsoft Technology Licensing, LLC | Simulated program execution error detection method and apparatus |
5790853, | Dec 22 1994 | FUJI XEROX CO , LTD | Workspace management apparatus |
5815720, | Mar 15 1996 | Hewlett-Packard Company | Use of dynamic translation to collect and exploit run-time information in an optimizing compilation system |
6182284, | Sep 30 1998 | Hewlett Packard Enterprise Development LP | Method and system for eliminating phi instruction resource interferences and redundant copy instructions from static-single-assignment-form computer code |
6298440, | Apr 22 1994 | Microsoft Technology Licensing, LLC | Method and system for providing multiple entry point code resources |
6658573, | Jan 17 1997 | GOOGLE LLC | Protecting resources in a distributed computer system |
7017143, | Dec 01 1999 | Microsoft Technology Licensing, LLC | External resource files for application development and management |
7353503, | Dec 27 2002 | Oracle America, Inc | Efficient dead code elimination |
7574695, | Dec 23 2003 | NTT DoCoMo, Inc | Performing checks on the resource usage of computer programs |
7574895, | Nov 18 2003 | Robert Bosch GmbH | Sensor for detecting particles in a gas stream and method for its manufacture |
7996850, | Dec 28 2006 | SAP SE | Dynamic business object properties for SOA architectures |
8671389, | Sep 27 2011 | GOOGLE LLC | Web application resource manager on the web and localizable components |
20020145765, | |||
20050278689, | |||
20060130021, | |||
20070259672, | |||
20080016314, | |||
20080021917, | |||
20080072211, | |||
20120192174, | |||
20120317556, | |||
20150363237, | |||
20170322690, | |||
CN106708565, | |||
WO2013081666, | |||
WO2020081134, |
Executed on | Assignor | Assignee | Conveyance | Frame | Reel | Doc |
Oct 16 2018 | eBay, Inc. | (assignment on the face of the patent) | / | |||
Oct 16 2018 | DIGNARD, RYAN | EBAY, INC | ASSIGNMENT OF ASSIGNORS INTEREST SEE DOCUMENT FOR DETAILS | 047187 | /0865 |
Date | Maintenance Fee Events |
Oct 16 2018 | BIG: Entity status set to Undiscounted (note the period is included in the code). |
Sep 11 2024 | M1551: Payment of Maintenance Fee, 4th Year, Large Entity. |
Date | Maintenance Schedule |
Mar 23 2024 | 4 years fee payment window open |
Sep 23 2024 | 6 months grace period start (w surcharge) |
Mar 23 2025 | patent expiry (for year 4) |
Mar 23 2027 | 2 years to revive unintentionally abandoned end. (for year 4) |
Mar 23 2028 | 8 years fee payment window open |
Sep 23 2028 | 6 months grace period start (w surcharge) |
Mar 23 2029 | patent expiry (for year 8) |
Mar 23 2031 | 2 years to revive unintentionally abandoned end. (for year 8) |
Mar 23 2032 | 12 years fee payment window open |
Sep 23 2032 | 6 months grace period start (w surcharge) |
Mar 23 2033 | patent expiry (for year 12) |
Mar 23 2035 | 2 years to revive unintentionally abandoned end. (for year 12) |