Fix directory listing with leading slash#1644
Merged
garrettjonesgoogle merged 1 commit intogoogleapis:masterfrom Feb 22, 2017
Merged
Fix directory listing with leading slash#1644garrettjonesgoogle merged 1 commit intogoogleapis:masterfrom
garrettjonesgoogle merged 1 commit intogoogleapis:masterfrom
Conversation
newDirectoryStream("dir1/") and newDirectoryStream("/dir1/") should
return the
same result. Added a test to show they didn't, then fixed it
so the test passes.
Author
|
great, thank you! |
meltsufin
pushed a commit
that referenced
this pull request
Dec 22, 2025
…-info-reports-plugin to v3.6.2 (#1644)
chingor13
pushed a commit
that referenced
this pull request
Jan 22, 2026
* fix(doc): Add discriptions for TransactionCallable interface * chore: generate libraries at Mon Oct 28 22:49:19 UTC 2024 --------- Co-authored-by: cloud-java-bot <cloud-java-bot@google.com>
chingor13
pushed a commit
that referenced
this pull request
Feb 24, 2026
suztomo
pushed a commit
to suztomo/google-cloud-java
that referenced
this pull request
Mar 11, 2026
…-info-reports-plugin to v3.6.2 (googleapis#1644)
chingor13
pushed a commit
that referenced
this pull request
Mar 12, 2026
suztomo
pushed a commit
to suztomo/google-cloud-java
that referenced
this pull request
Mar 23, 2026
suztomo
pushed a commit
that referenced
this pull request
Mar 30, 2026
newDirectoryStream("dir1/") and newDirectoryStream("/dir1/") should
return the
same result. Added a test to show they didn't, then fixed it
so the test passes.
lqiu96
pushed a commit
that referenced
this pull request
Apr 1, 2026
newDirectoryStream("dir1/") and newDirectoryStream("/dir1/") should
return the
same result. Added a test to show they didn't, then fixed it
so the test passes.
meltsufin
pushed a commit
that referenced
this pull request
Apr 29, 2026
This also changes the JDK distribution from zulu to temurin https://github.com/actions/setup-java#eclipse-temurin Source-Link: googleapis/synthtool@ef9fe2e Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:31c8276a1bfb43766597d32645721c029cb94571f1b8d996cb2c290744fe52f9 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
meltsufin
pushed a commit
that referenced
this pull request
May 1, 2026
This also changes the JDK distribution from zulu to temurin https://github.com/actions/setup-java#eclipse-temurin Source-Link: googleapis/synthtool@ef9fe2e Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:31c8276a1bfb43766597d32645721c029cb94571f1b8d996cb2c290744fe52f9 Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
newDirectoryStream("dir1/") and newDirectoryStream("/dir1/") should return the
same result. Added a test to show they didn't, then fixed it
so the test passes.
Thanks to @tomwhite for identifying the problem and suggesting the fix (in #1519).