Lines Matching full:default
52 …- Set a default value for environment variable AUTOBOOT_OPENBMC_NICKNAME/AUTOIPL_FSP1_NICKNAME if …
56 …Note: The programmer may set a default for any given environment variable by declaring a global va…
65 …Furthermore, if such a default variable declaration is not a string, this function will preserve t…
77 returned. The default is the current plug in package name.
93 # Set a default for nickname.
104 …# For all variables specified in the parm_def file, we want them to default to "" rather than bein…
134 …# os.environ only accepts string values. However, if the user defines default values of other typ…
140 # default.
155 # Restore the types of any variables where the caller had defined default values.
252 def get_plug_default(var_name, default=None): argument
254 Derive and return a default value for the given parm variable.
259 …This function will assign a default by checking the following environment variables in the order s…
265 … none of these are found, this function will return the value passed by the caller in the "default"
274 …he first of these environment variables that is found to be set will be used to provide the default
288 and everything else to default to debug=0. This could be accomplished as follows:
297 …var_name The name of the variable for which a default value is to be calcul…
298 default The default value if one cannot be determined.
322 return default
341 Default value is the AUTOGUI_PLUG_IN_DIR_PATHS or
345 # Calculate default value for plug_in_dir_paths.
510 …default The default value to be returned if there is no plug-in save file …
520 default, args, kwargs = fa.pop_arg("", *args, **kwargs)
536 if type(default) is bool:
539 if type(default) is int:
543 var_value = default
547 + " does not exist so returning default value."