Home
last modified time | relevance | path

Searched refs:bucket (Results 1 – 13 of 13) sorted by relevance

/expo/.github/workflows/
H A Ddocs-pr-deploy.yml48 - name: �� Set up docs preview bucket
54 # Create bucket
55 aws s3api create-bucket --bucket docs.expo.dev-pr-${{ github.event.pull_request.number }}
58 …aws s3api put-public-access-block --bucket docs.expo.dev-pr-${{ github.event.pull_request.number }…
60 # Set bucket policy to public
61 …aws s3api put-bucket-policy --bucket docs.expo.dev-pr-${{ github.event.pull_request.number }} --po…
H A Ddocs-pr-destroy.yml22 - name: �� Delete docs preview bucket
/expo/docs/
H A Ddeploy.sh6 bucket="$AWS_BUCKET"
32 "s3://${bucket}"
42 "s3://${bucket}"
54 "s3://${bucket}"
62 "s3://${bucket}"
202 "s3://${bucket}/${i}"
212 "s3://${bucket}/${i}/index.html"
218 if [ "$bucket" = "docs.expo.dev" ]; then
220 curl -m 15 "https://www.google.com/ping\?sitemap\=https%3A%2F%2F${bucket}%2Fsitemap.xml"
/expo/apps/test-suite/firebase/
H A Dstorage.rules3 match /b/{bucket}/o {
/expo/apps/native-component-list/src/screens/Video/
H A DVideoScreen.tsx15 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4'
28 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4'
/expo/docs/pages/build-reference/
H A Dios-builds.mdx23 1. Upload the project tarball to a private AWS S3 bucket and send the build request to EAS Build.
33 1. Download the project tarball from a private AWS S3 bucket and unpack it.
54 1. Upload the application archive to a private AWS S3 bucket.
61 1. Upload the build artifacts archive to a private AWS S3 bucket if `buildArtifactPaths` is specifi…
H A Dandroid-builds.mdx22 1. Upload the project tarball to a private AWS S3 bucket and send the build request to EAS Build.
32 1. Download the project tarball from a private AWS S3 bucket and unpack it.
55 1. Upload the build artifacts archive to a private AWS S3 bucket if `buildArtifactPaths` is specifi…
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/host/exp/exponent/modules/api/
H A DPedometerModule.java126 for (Bucket bucket : dataReadResult.getBuckets()) { in getStepCountAsync()
127 DataSet ds = bucket.getDataSet(DataType.TYPE_STEP_COUNT_DELTA); in getStepCountAsync()
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/
H A DPedometerModule.java126 for (Bucket bucket : dataReadResult.getBuckets()) { in getStepCountAsync()
127 DataSet ds = bucket.getDataSet(DataType.TYPE_STEP_COUNT_DELTA); in getStepCountAsync()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/
H A DPedometerModule.java126 for (Bucket bucket : dataReadResult.getBuckets()) { in getStepCountAsync()
127 DataSet ds = bucket.getDataSet(DataType.TYPE_STEP_COUNT_DELTA); in getStepCountAsync()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/
H A DPedometerModule.java126 for (Bucket bucket : dataReadResult.getBuckets()) { in getStepCountAsync()
127 DataSet ds = bucket.getDataSet(DataType.TYPE_STEP_COUNT_DELTA); in getStepCountAsync()
/expo/packages/expo-branch/ios/EXBranch/RNBranch/
H A DRNBranch.m651 loadRewards:(NSString *)bucket
658 if (bucket) {
659 credits = (int)[self.class.branch getCreditsForBucket:bucket];
674 inBucket:(NSString *)bucket
678 if (bucket) {
679 …[self.class.branch redeemRewards:amount forBucket:bucket callback:^(BOOL changed, NSError *error) {
/expo/packages/expo-branch/android/src/main/java/io/branch/rnbranch/
H A DRNBranchModule.java971 public void redeemRewards(int value, String bucket, Promise promise) in redeemRewards() argument
973 if (bucket == null) { in redeemRewards()
976 Branch.getInstance().redeemRewards(bucket, value, new RedeemRewardsListener(promise)); in redeemRewards()
981 public void loadRewards(String bucket, Promise promise) in loadRewards() argument
983 Branch.getInstance().loadRewards(new LoadRewardsListener(bucket, promise)); in loadRewards()
1047 public LoadRewardsListener(String bucket, Promise promise) { in LoadRewardsListener() argument
1048 this._bucket = bucket; in LoadRewardsListener()