-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation cleanup, post-gogradle build changes (#1120)
* Documentation cleanup, post-gogradle build changes * Documentation cleanup, post-gogradle build changes * Documentation cleanup, post-gogradle build changes * Documentation cleanup, post-gogradle build changes * Update cross compile instructions for gradfle tasks
- Loading branch information
Showing
19 changed files
with
168 additions
and
79 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
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
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
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
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
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 |
---|---|---|
|
@@ -26,33 +26,35 @@ packages, belongs in a *namespace.* | |
|
||
The fully qualified name of any entity has the format: | ||
|
||
``` | ||
```sh | ||
/<namespaceName>[/<packageName>]/<entityName> | ||
``` | ||
|
||
The namespace is typically provided at bind-time by the user deploying the package to their chosen OpenWhisk platform provider. | ||
|
||
#### Requirements | ||
|
||
- The “/whisk.system“ namespace is reserved for entities that are distributed with the OpenWhisk system. | ||
- The “/whisk.system“ namespace is reserved for entities that are distributed with the OpenWhisk system. | ||
|
||
### Entity Names | ||
|
||
The names of all entities, including actions, triggers, rules, packages, | ||
and namespaces, are a sequence of characters that follow the following | ||
format: | ||
|
||
- The first character SHALL be an alphanumeric character, a digit, or an underscore. | ||
- The subsequent characters MAY be alphanumeric, digits, spaces, or any of the following: | ||
``` | ||
_, @, ., - | ||
``` | ||
- The first character SHALL be an alphanumeric character, a digit, or an underscore. | ||
- The subsequent characters MAY be alphanumeric, digits, spaces, or any of the following: | ||
|
||
```sh | ||
_, @, ., - | ||
``` | ||
|
||
- The last character SHALL NOT be a space. | ||
- The maximum name length of any entity name is 256 characters (i.e., ENTITY_NAME_MAX_LENGTH = 256). | ||
|
||
Valid entity names are described with the following regular expression (Java metacharacter syntax): | ||
|
||
``` | ||
```sh | ||
"\A([\w]|[\w][\w@ .-]{0,${ENTITY_NAME_MAX_LENGTH - 2}}[\[email protected]])\z" | ||
``` | ||
|
||
|
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
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
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
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
Oops, something went wrong.