-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(functions): add READMEs to defragged files (#8791)
- Loading branch information
Ace Nassri
authored
Dec 7, 2022
1 parent
13c35ef
commit 2be381f
Showing
10 changed files
with
112 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Timeout sample | ||
|
||
See: | ||
|
||
* [Cloud Functions Execution Timeline][tutorial] | ||
* [Sample Code](main.py) | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/concepts/execution-environment#execution-timeline |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Filesystem sample | ||
|
||
See: | ||
|
||
* [Cloud Functions Filesystem][tutorial] | ||
* [Sample Code](main.py) | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/concepts/execution-environment#memory-file-system |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Requests sample | ||
|
||
See: | ||
|
||
* [Cloud Functions Networking][tutorial] | ||
* [Sample Code](main.py) | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/concepts/execution-environment#network |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Statelessness sample | ||
|
||
See: | ||
|
||
* [Cloud Functions Statelessness][tutorial] | ||
* [Sample Code](main.py) | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/concepts/execution-environment#statelessness |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Avoiding Infinite Retries sample | ||
|
||
## More info | ||
See: | ||
|
||
* [Retrying Event-Driven Functions][tutorial] | ||
* [Sample code][code] | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/bestpractices/retries#set_an_end_condition_to_avoid_infinite_retry_loops | ||
[code]: main.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Connection Pooling sample | ||
|
||
## More info | ||
See: | ||
|
||
* [Optimizing Networking][tutorial] | ||
* [Sample code][code] | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/bestpractices/networking#maintaining_persistent_connections | ||
[code]: main.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - GCP APIs sample | ||
|
||
## More info | ||
See: | ||
|
||
* [Optimizing Networking][tutorial] | ||
* [Sample code][code] | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/bestpractices/networking#maintaining_persistent_connections | ||
[code]: main.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Lazy Globals sample | ||
|
||
## More info | ||
See: | ||
|
||
* [Tips & Tricks for Cloud Functions][tutorial] | ||
* [Sample code][code] | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/bestpractices/tips#use_global_variables_to_reuse_objects_in_future_invocations | ||
[code]: main.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Retries sample | ||
|
||
## More info | ||
See: | ||
|
||
* [Retrying Event-Driven Functions][tutorial] | ||
* [Sample code][code] | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/bestpractices/retries | ||
[code]: main.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/> | ||
|
||
# Google Cloud Functions - Variable Scope sample | ||
|
||
## More info | ||
See: | ||
|
||
* [Cloud Functions Execution Environment][tutorial] | ||
* [Sample code][code] | ||
|
||
[tutorial]: https://cloud.google.com/functions/docs/concepts/execution-environment#scope | ||
[code]: main.py |