Home
last modified time | relevance | path

Searched refs:environment (Results 76 – 100 of 270) sorted by last modified time

1234567891011

/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DCHANGELOG.md46 * Fix: Add support for GUZZLE_CURL_SELECT_TIMEOUT environment variable [#2161](https://github.com/g…
607 `GUZZLE_CURL_SELECT_TIMEOUT` environment variables
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/
H A DGoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment.php33 public $environment; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1DeploymentChangeReportRoutingDeployment
70 public function setEnvironment($environment) argument
72 $this->environment = $environment;
79 return $this->environment;
H A DGoogleCloudApigeeV1EnvironmentGroupAttachment.php29 public $environment; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1EnvironmentGroupAttachment
56 public function setEnvironment($environment) argument
58 $this->environment = $environment;
65 return $this->environment;
H A DGoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute.php33 public $environment; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute
70 public function setEnvironment($environment) argument
72 $this->environment = $environment;
79 return $this->environment;
H A DGoogleCloudApigeeV1RoutingRule.php33 public $environment; variable in Google\\Service\\Apigee\\GoogleCloudApigeeV1RoutingRule
74 public function setEnvironment($environment) argument
76 $this->environment = $environment;
83 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AdExchangeBuyerII/
H A DFilterSet.php40 public $environment; variable in Google\\Service\\AdExchangeBuyerII\\FilterSet
133 public function setEnvironment($environment) argument
135 $this->environment = $environment;
142 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/
H A DGoogleCloudDialogflowCxV3ExportAgentRequest.php33 public $environment; variable in Google\\Service\\Dialogflow\\GoogleCloudDialogflowCxV3ExportAgentRequest
66 public function setEnvironment($environment) argument
68 $this->environment = $environment;
75 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/PagespeedInsights/
H A DLighthouseResultV5.php125 public function setEnvironment(Environment $environment) argument
127 $this->environment = $environment;
134 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dataflow/
H A DLaunchTemplateParameters.php44 public function setEnvironment(RuntimeEnvironment $environment) argument
46 $this->environment = $environment;
53 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DDialogflow.php404 'path' => 'v3/{+environment}:deployFlow',
407 'environment' => [
474 'path' => 'v3/{+environment}:runContinuousTest',
477 'environment' => [
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DSlsaCompleteness.php29 public $environment; variable in Google\\Service\\ContainerAnalysis\\SlsaCompleteness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
H A DSlsaRecipe.php37 public $environment; variable in Google\\Service\\ContainerAnalysis\\SlsaRecipe
88 public function setEnvironment($environment) argument
90 $this->environment = $environment;
97 return $this->environment;
H A DCompleteness.php29 public $environment; variable in Google\\Service\\ContainerAnalysis\\Completeness
52 public function setEnvironment($environment) argument
54 $this->environment = $environment;
61 return $this->environment;
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DTableExtension.php35 public function register(EnvironmentBuilderInterface $environment): void argument
37 $environment
H A DCommonmarkToDokuwikiExtension.php44 public function register(EnvironmentBuilderInterface $environment): void {
45 $environment
87 if ($environment->getConfiguration()->get('commonmark/use_asterisk')) {
88 $environment->addDelimiterProcessor(new EmphasisDelimiterProcessor('*'));
91 if ($environment->getConfiguration()->get('commonmark/use_underscore')) {
92 $environment->addDelimiterProcessor(new EmphasisDelimiterProcessor('_'));
29 register(ConfigurableEnvironmentInterface $environment) global() argument
H A DFootnoteToDokuwikiExtension.php57 public function register(EnvironmentBuilderInterface $environment): void
59 $environment->addBlockStartParser(new FootnoteStartParser(), 51);
60 $environment->addInlineParser(new AnonymousFootnoteRefParser(), 35);
61 $environment->addInlineParser(new FootnoteRefParser(), 51);
63 $environment->addRenderer(FootnoteContainer::class, new FootnoteContainerRenderer());
64 $environment->addRenderer(Footnote::class, new FootnoteRenderer());
65 $environment->addRenderer(FootnoteBackref::class, new FootnoteBackrefRenderer());
66 $environment->addRenderer(FootnoteRef::class, new FootnoteRefRenderer());
68 $environment->addEventListener(DocumentParsedEvent::class, [new AnonymousFootnotesListener(), 'onDocumentParsed']);
69 $environment
40 register(ConfigurableEnvironmentInterface $environment) global() argument
[all...]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DDWRenderer.php34 protected $environment;
37 * @param EnvironmentInterface $environment
39 public function __construct(EnvironmentInterface $environment)
41 $this->environment = $environment;
46 return $this->environment->getConfiguration()->get('renderer/block_separator');
51 return $this->environment->getConfiguration()->get('renderer/inner_separator');
62 return $this->environment->getConfiguration()->get('renderer/' . $option, $default);
86 $renderers = $this->environment->getRenderersForClass(\get_class($node));
33 protected $environment; global() variable in Dokuwiki\\Plugin\\Commonmark\\DWRenderer
38 __construct(EnvironmentInterface $environment) global() argument
H A DCommonmark.php16 # create environment
17 $environment = self::createDWEnvironment();
20 $parser = new MarkdownParser($environment);
22 $DWRenderer = new DWRenderer($environment);
78 $environment = new Environment($config);
79 $environment->addExtension(new CommonMarkToDokuWikiExtension());
80 $environment->addExtension(new FootnoteToDokuwikiExtension());
81 $environment->addExtension(new StrikethroughExtension());
82 $environment->addExtension(new TableExtension());
83 $environment
[all...]
/plugin/pagebuttons/
H A Ddocker-compose.yml6 environment:
/plugin/commonmark/vendor/league/commonmark/src/Extension/InlinesOnly/
H A DInlinesOnlyExtension.php37 public function register(EnvironmentBuilderInterface $environment): void
41 $environment
65 if ($environment->getConfiguration()->get('commonmark/use_asterisk')) {
66 $environment->addDelimiterProcessor(new EmphasisDelimiterProcessor('*'));
69 if ($environment->getConfiguration()->get('commonmark/use_underscore')) {
70 $environment->addDelimiterProcessor(new EmphasisDelimiterProcessor('_'));
26 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Strikethrough/
H A DStrikethroughExtension.php21 public function register(EnvironmentBuilderInterface $environment): void
23 $environment->addDelimiterProcessor(new StrikethroughDelimiterProcessor());
24 $environment->addRenderer(Strikethrough::class, new StrikethroughRenderer());
19 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md299 - Added `slug_normalizer/unique` option to control whether unique slugs should be generated per-document or per-environment
388 - The paragraph parser no longer needs to be added manually to the environment
560 - Alternative 1: Use `CommonMarkConverter` or `GithubFlavoredMarkdownConverter` if you don't need to customize the environment
/plugin/commonmark/vendor/league/commonmark/src/Extension/TaskList/
H A DTaskListExtension.php21 public function register(EnvironmentBuilderInterface $environment): void
23 $environment->addInlineParser(new TaskListItemMarkerParser(), 35);
24 $environment->addRenderer(TaskListItemMarker::class, new TaskListItemMarkerRenderer());
19 register(ConfigurableEnvironmentInterface $environment) global() argument
/plugin/commonmark/vendor/league/commonmark/src/
H A DHtmlRenderer.php
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DCloseBracketParser.php

1234567891011