summaryrefslogtreecommitdiffstats
path: root/vespajlib
Commit message (Collapse)AuthorAgeFilesLines
* Update expected test resultsjonmv2022-04-111-15/+15
|
* 2 space indent by defaultjonmv2022-04-111-1/+1
|
* Improve formatting of controller-server JSON response filesjonmv2022-04-111-3/+8
|
* Make indent specifiable in JsonFormatjonmv2022-04-112-20/+32
|
* Domain names may end with ., but hostnames may notjonmv2022-04-092-5/+5
|
* Revert "Merge pull request #22072 from ↵jonmv2022-04-095-60/+14
| | | | | | | vespa-engine/jonmv/unify-hostname-classes" This reverts commit 87e5b33c003d07ca585d73e0166857fe22b4c16f, reversing changes made to 80b96d32550ae0df59572a58cd62f507e8068c2c.
* Revert "Merge pull request #22068 from ↵jonmv2022-04-085-14/+60
| | | | | | | vespa-engine/jonmv/unify-hostname-classes" This reverts commit 8aa4c83df5ce7843c040afa41706fcc7c3afd030, reversing changes made to f95ad44fae879da9db19f73eabe62c53baeb0c36.
* Add files that INtelliJ removedjonmv2022-04-081-0/+42
|
* Move ID part to HostName in config-provisioningjonmv2022-04-083-87/+2
|
* Revert "Merge pull request #22065 from ↵jonmv2022-04-084-11/+8
| | | | | | | vespa-engine/revert-22049-jonmv/unify-hostname-classes" This reverts commit 4ffc54339186574491a32b3166223c3fc50ba8fe, reversing changes made to db9e570a36decb24e6cb13f44bd0ff444ab762e3.
* Revert "Jonmv/unify hostname classes"Jon Marius Venstad2022-04-084-8/+11
|
* Update ABI specjonmv2022-04-081-1/+1
|
* Use DomainName for routing names, and fix invalid unit test namesjonmv2022-04-083-10/+7
|
* Unwrap recursionJon Marius Venstad2022-04-081-9/+11
|
* Constant time append to Path as well, and add length()Jon Marius Venstad2022-04-082-31/+72
|
* Return "this" when no removal occursJon Marius Venstad2022-04-081-2/+4
|
* More efficient Query.set(Map), and bulk Query.remove(Collection)Jon Marius Venstad2022-04-083-12/+19
|
* Add some more unit testing of HttpURL.queryJon Marius Venstad2022-04-072-0/+16
|
* Fix another unit testJon Marius Venstad2022-04-072-7/+7
|
* Some more unit test coverage of query manipulationJon Marius Venstad2022-04-071-1/+14
|
* Support multiple values for same key, in HttpURL.QueryJon Marius Venstad2022-04-072-73/+153
|
* Replicate host name pattern instead of making publicJon Marius Venstad2022-04-072-4/+8
|
* Non-functional changesJon Marius Venstad2022-04-072-2/+14
|
* Resolve conflictsJon Marius Venstad2022-04-077-19/+670
|
* Merge pull request #22015 from ↵Henning Baldersheim2022-04-071-51/+52
|\ | | | | | | | | vespa-engine/balder/handle-access-denied-gracefully Handle java.lang.reflect.InaccessibleObjectException as a soft error.
| * Handle java.lang.reflect.InaccessibleObjectException as a soft error.Henning Baldersheim2022-04-071-51/+52
| |
* | Merge pull request #22013 from vespa-engine/balder/simplify-long-ifHenning Baldersheim2022-04-071-32/+3
|\ \ | |/ |/| Add simplification of long if based on tip from @jonmv.
| * Also allow 0xFFFE and 0xFFFFHenning Baldersheim2022-04-071-0/+1
| |
| * Add simplification of long if based on tip from @jonmv.Henning Baldersheim2022-04-061-32/+2
| |
* | Merge branch 'master' into jonmv/more-http-urlJon Marius Venstad2022-04-062-32/+36
|\|
| * Better naming and skip empty else.Henning Baldersheim2022-04-061-5/+4
| |
| * Skip unnecessary surrogate check if ! isBmpCodePoint, and move high ↵Henning Baldersheim2022-04-061-9/+4
| | | | | | | | surrogate check inside isTextCharacter.
| * Avoid extra check for isValidCodePoint.Henning Baldersheim2022-04-061-4/+1
| |
| * Refactor to optimize for hot path.Henning Baldersheim2022-04-062-26/+40
| | | | | | | | | | No reason to count characters when you already now there can only be one. Nor is there any reason to check for surrogates when there can be none.
* | Use HttpURL.Path for Path.getRest()Jon Marius Venstad2022-04-063-0/+7
|/
* Merge pull request #21952 from vespa-engine/jonmv/http-urlJon Marius Venstad2022-04-051-8/+8
|\ | | | | Jonmv/http url
| * Simplify signature of require(...)Jon Marius Venstad2022-04-031-8/+8
| |
* | Merge pull request #21981 from ↵Henning Baldersheim2022-04-053-1/+67
|\ \ | | | | | | | | | | | | vespa-engine/balder/use-primitives-to-get-more-predictable-jit-inlining Use a primitive to see if that makes the JIT compiler more predictable.
| * | Update abi and split in hot/cold path.Henning Baldersheim2022-04-053-1/+50
| | |
| * | Use a primitive to see if that makes the JIT compiler more predictable.Henning Baldersheim2022-04-051-0/+17
| | |
* | | Merge pull request #21963 from vespa-engine/mpolden/zip-improvementsJon Marius Venstad2022-04-053-0/+352
|\ \ \ | |/ / |/| | Unify zip/tar archive reading [run-systemtest]
| * | Missing wordMartin Polden2022-04-051-1/+1
| | |
| * | Limit number of ZIP entries read by controllerMartin Polden2022-04-052-10/+28
| | |
| * | Make max application package size configurableMartin Polden2022-04-052-14/+14
| | |
| * | Allow single-dot segments in configserverMartin Polden2022-04-041-4/+11
| | |
| * | Explain limits of symlink detectionMartin Polden2022-04-041-1/+6
| | |
| * | Ignore directoriesMartin Polden2022-04-042-5/+8
| | |
| * | Move relevant tests to ArchiveStreamReaderTestMartin Polden2022-04-041-4/+62
| | |
| * | Implement ArchiveStreamReaderMartin Polden2022-04-043-0/+261
| | |
* | | Rename classHarald Musum2022-04-052-6/+6
| | |