Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Takes local-packages, a list of local packages, and adds a new one for group:artifact at version.
Find the artifactID of a pom file, from its sxml content.
Return the content of a .pom file.
Find the version of a pom file, potentially looking at its parent pom file. See find-parent for the meaning of the arguments.
Return the list of dependencies listed in the sxml content of the pom file.
Open pom-file, and override its content, rewriting its dependencies to set their version to the latest version available in the inputs.
#:with-plugins? controls whether plugins are also overridden. #:with-build-dependencies? controls whether build dependencies (whose scope is not empty) are also overridden. By default build dependencies and plugins are not overridden.
#:excludes is an association list of groupID to a list of artifactIDs. When a pair (groupID, artifactID) is present in the list, its entry is removed instead of being overridden. If the entry is ignored because of the previous arguments, the entry is not removed.
#:local-packages is an association list that contains additional version information for packages that are not in inputs. If the package is not found in inputs, information from this list is used instead to determine the latest version of the package. This is an association list of group IDs to another association list of artifact IDs to a version number.
Returns nothing, but overrides the pom-file as a side-effect.
Build the given package, applying all of PHASES in order.
Build the given package, applying all of PHASES in order.
Write the assignments in ALIST, an association list, to PORT.
Write an assignment of VALUE to KEY to PORT.
VALUE must be a string (without any special characters such as quotes), a boolean or an integer. Lists are currently not supported
Write a section header for a section named SECTION-NAME to PORT.
Build the given JavaScript package, applying all of PHASES in order.
Build the given Mix package, applying all of PHASES in order.
Rewrite 'package.json' to allow the build to proceed without packages listed in 'dependencies-to-remove', a list of strings naming npm packages.
To prevent the deleted dependencies from being reintroduced, use this function only after the 'patch-dependencies' phase.
Like 'with-atomic-file-replacement', but PROC is called with a single argument---the result of parsing FILE's contents as json---and should a value to be written as json to the replacement FILE.
Provides a lambda to supply to modify-json which deletes the specified `fields` which is a list of field-paths as mentioned in `modify-json-fields`. Examples: (delete-fields '( ("path" "to" "field") "path.to.other.field"))
Provides a lambda to supply to modify-json which replaces the value of the supplied field. `fields` is a list of pairs, where the first element is the field-path and the second element is the value to replace the target with. Examples: (replace-fields '( (("path" "to" "field") "new field value") ("path.to.other.field" "new field value")))