Home
last modified time | relevance | path

Searched full:environment (Results 1 – 25 of 741) sorted by relevance

12345678910>>...30

/plugin/findologicxmlexport/vendor/sebastian/environment/tests/
DRuntimeTest.php3 * This file is part of the Environment package.
11 namespace SebastianBergmann\Environment;
18 * @var \SebastianBergmann\Environment\Runtime
28 * @covers \SebastianBergmann\Environment\Runtime::canCollectCodeCoverage
30 * @uses \SebastianBergmann\Environment\Runtime::hasXdebug
31 * @uses \SebastianBergmann\Environment\Runtime::isHHVM
32 * @uses \SebastianBergmann\Environment\Runtime::isPHP
40 * @covers \SebastianBergmann\Environment\Runtime::getBinary
42 * @uses \SebastianBergmann\Environment\Runtime::isHHVM
50 * @covers \SebastianBergmann\Environment\Runtime::isHHVM
[all …]
DConsoleTest.php3 * This file is part of the Environment package.
11 namespace SebastianBergmann\Environment;
18 * @var \SebastianBergmann\Environment\Console
28 * @covers \SebastianBergmann\Environment\Console::isInteractive
36 * @covers \SebastianBergmann\Environment\Console::isInteractive
44 * @covers \SebastianBergmann\Environment\Console::hasColorSupport
46 * @uses \SebastianBergmann\Environment\Console::isInteractive
54 * @covers \SebastianBergmann\Environment\Console::getNumberOfColumns
56 * @uses \SebastianBergmann\Environment\Console::isInteractive
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/Resource/
DAccountsContainersEnvironments.php20 use Google\Service\TagManager\Environment; alias
34 * Creates a GTM Environment. (environments.create)
38 * @param Environment $postBody
40 * @return Environment
42 public function create($parent, Environment $postBody, $optParams = [])
46 return $this->call('create', [$params], Environment::class);
49 * Deletes a GTM Environment. (environments.delete)
51 * @param string $path GTM Environment's API relative path. Example:
62 * Gets a GTM Environment. (environments.get)
64 * @param string $path GTM Environment's API relative path. Example:
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudShell/Resource/
DUsersEnvironments.php22 use Google\Service\CloudShell\Environment; alias
38 * Adds a public SSH key to an environment, allowing clients with the
39 * corresponding private key to connect to that environment via SSH. If a key
43 * @param string $environment Environment this key should be added to, e.g.
49 public function addPublicKey($environment, AddPublicKeyRequest $postBody, $optParams = []) argument
51 $params = ['environment' => $environment, 'postBody' => $postBody];
56 * Sends OAuth credentials to a running environment on behalf of a user. When
57 * this completes, the environment will be authorized to run various Google
75 * Gets an environment. Returns NOT_FOUND if the environment does not exist.
82 * @return Environment
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudComposer/Resource/
DProjectsLocationsEnvironments.php20 use Google\Service\CloudComposer\Environment; alias
35 * Create a new environment. (environments.create)
39 * @param Environment $postBody
43 public function create($parent, Environment $postBody, $optParams = [])
50 * Delete an environment. (environments.delete)
52 * @param string $name The environment to delete, in the form:
64 * Get an existing environment. (environments.get)
66 * @param string $name The resource name of the environment to get, in the form:
69 * @return Environment
75 return $this->call('get', [$params], Environment::class);
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Node/Expression/
DFunctionTest.php12 use Twig\Environment; alias
33 … $environment = new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock());
34 $environment->addFunction(new TwigFunction('foo', 'foo', []));
35 $environment->addFunction(new TwigFunction('bar', 'bar', ['needs_environment' => true]));
36 $environment->addFunction(new TwigFunction('foofoo', 'foofoo', ['needs_context' => true]));
37 …$environment->addFunction(new TwigFunction('foobar', 'foobar', ['needs_environment' => true, 'need…
38 …$environment->addFunction(new TwigFunction('barbar', 'twig_tests_function_barbar', ['is_variadic' …
43 $tests[] = [$node, 'foo()', $environment];
46 $tests[] = [$node, 'foo("bar", "foobar")', $environment];
49 $tests[] = [$node, 'bar($this->env)', $environment];
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dialogflow/Resource/
DProjectsLocationsAgentsEnvironments.php39 * Creates an Environment in the specified Agent. This method is a [long-running
44 * Environment (environments.create)
46 * @param string $parent Required. The Agent to create an Environment for.
59 * Deletes the specified Environment. (environments.delete)
61 * @param string $name Required. The name of the Environment to delete. Format:
73 * Deploys a flow to the specified Environment. This method is a [long-running
79 * @param string $environment Required. The environment to deploy the flow to.
85 …public function deployFlow($environment, GoogleCloudDialogflowCxV3DeployFlowRequest $postBody, $op… argument
87 $params = ['environment' => $environment, 'postBody' => $postBody];
92 * Retrieves the specified Environment. (environments.get)
[all …]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/Extension/
H A DFootnoteToDokuwikiExtension.php20 use League\CommonMark\Environment\EnvironmentBuilderInterface;
57 public function register(EnvironmentBuilderInterface $environment): void argument
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(), 'onD…
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Test/
DNodeTestCase.php16 use Twig\Environment; alias
27 public function testCompile($node, $source, $environment = null, $isPattern = false) argument
29 $this->assertNodeCompilation($source, $node, $environment, $isPattern);
32 …public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPat… argument
34 $compiler = $this->getCompiler($environment);
44 protected function getCompiler(Environment $environment = null) argument
46 return new Compiler(null === $environment ? $this->getEnvironment() : $environment);
51 return new Environment(new ArrayLoader([]));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Apigee/Resource/
DOrganizationsEnvironments.php43 * Creates an environment in an organization. (environments.create)
46 * environment will be created. Use the following structure in your request:
51 * @opt_param string name Optional. Name of the environment. Alternatively, the
62 * Deletes an environment from an organization. (environments.delete)
64 * @param string $name Required. Name of the environment. Use the following
76 * Gets environment details. (environments.get)
78 * @param string $name Required. Name of the environment. Use the following
90 * Gets the debug mask singleton resource for an environment.
106 * Gets the deployed configuration for an environment.
109 * @param string $name Required. Name of the environment deployed configuration
[all …]
DOrganizationsEnvgroups.php35 * Creates a new environment group. (envgroups.create)
38 * the environment group in the following format: `organizations/{org}`.
42 * @opt_param string name ID of the environment group. Overrides any ID in the
53 * Deletes an environment group. (envgroups.delete)
55 * @param string $name Required. Name of the environment group in the following
67 * Gets an environment group. (envgroups.get)
69 * @param string $name Required. Name of the environment group in the following
81 * Lists all environment groups. (envgroups.listOrganizationsEnvgroups)
84 * environment groups in the following format: `organizations/{org}`.
87 * @opt_param int pageSize Maximum number of environment groups to return. The
[all …]
DOrganizationsEnvironmentsApisRevisions.php37 * an API proxy until it has been deployed to an environment. After you deploy
52 * replaces other deployed revisions of the API proxy in the environment. Set
55 * the API proxy are deployed in the environment.
58 * and the environment changes to add the deployment will be rolled out in a
60 * changing the environment group's routing before the new destination for the
62 * new deployment will be capturing traffic from another environment under a
63 * shared environment group or if traffic will be rerouted to a different
64 * environment due to a base path removal. The [GenerateDeployChangeReport
85 * environment in the following format:
97 * Undeploys an API proxy revision from an environment. For a request path `orga
[all …]
/plugin/commonmark/src/Dokuwiki/Plugin/Commonmark/
H A DDWRenderer.php22 use League\CommonMark\Environment\EnvironmentInterface;
34 protected $environment; variable in Dokuwiki\\Plugin\\Commonmark\\DWRenderer
37 * @param EnvironmentInterface $environment
39 public function __construct(EnvironmentInterface $environment) argument
41 $this->environment = $environment;
46 return $this->environment->getConfiguration()->get('renderer/block_separator');
51 return $this->environment->getConfiguration()->get('renderer/inner_separator');
63 return $this->environment->getConfiguration()->get('commonmark/' . $option);
65 return $this->environment->getConfiguration()->get('renderer/' . $option);
90 $renderers = $this->environment->getRenderersForClass(\get_class($node));
H A DCommonmark.php5 use League\CommonMark\Environment\Environment; alias
19 // create environment
20 $environment = self::createDWEnvironment($render_softbreaks);
23 $parser = new MarkdownParser($environment);
25 $DWRenderer = new DWRenderer($environment);
116 public static function createDWEnvironment($render_softbreaks): Environment {
125 $environment = new Environment($config);
126 $environment->addExtension(new CommonMarkToDokuWikiExtension());
127 $environment->addExtension(new FootnoteToDokuwikiExtension());
128 $environment->addExtension(new StrikethroughExtension());
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudShell/
DStartEnvironmentResponse.php22 protected $environmentType = Environment::class;
26 * @param Environment
28 public function setEnvironment(Environment $environment) argument
30 $this->environment = $environment;
33 * @return Environment
37 return $this->environment;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
DListEnvironmentsResponse.php22 protected $collection_key = 'environment';
23 protected $environmentType = Environment::class;
31 * @param Environment[]
33 public function setEnvironment($environment) argument
35 $this->environment = $environment;
38 * @return Environment[]
42 return $this->environment;
/plugin/webcode/vendor/
Dfirebug-lite-1.2.js122 …ttribute.set("id","FirebugIFrame").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
123 …IV").attribute.set("id","Firebug").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
151 el.button.container.environment.addStyle({ "paddingTop":"12px" });
376 el.firebugIcon.environment.addStyle({ "display": env.debug&&'none'||'block' });
395 el.main.environment.addStyle({ "display":env.debug&&'block'||'none' });
396 el.mainiframe.environment.addStyle({ "display":env.debug&&'block'||'none' });
418 el.settings.container.environment.addStyle({
422 el.settings.progressDiv.environment.addStyle({
430 firebug.el.settings.container.environment.addStyle({
442 firebug.el.settings.progressDiv.environment.addStyle({
[all …]
Dfirebug-lite-1.2-compressed.js10environment.addStyle({"display":"none","width":lib.util.GetViewport().width+"px"}).insert(document…
12 if(lib.env.ie||lib.env.webkit){el.button.container.environment.addStyle({"paddingTop":"12px"});}
16 if(env.showIconWhenHidden){if(!internal.popupWin){el.firebugIcon.environment.addStyle({"display":en…
18environment.addStyle({"display":env.debug&&'block'||'none'});el.mainiframe.environment.addStyle({"…
22environment.addStyle({"display":"none"});el.mainiframe.environment.addStyle({"display":"none"});if…
23environment.addStyle({"display":"block"});el.button.newWindow.environment.addStyle({"display":"non…
24environment.addStyle({"display":"none"});firebug.el.mainiframe.environment.addStyle({"display":"no…
25environment.addStyle({"height":win.resizer.y[2]+"px"});el.mainiframe.environment.addStyle({"height…
26 …;var dim=lib.util.GetViewport();el.main.environment.addStyle({"width":dim.width+"px"});el.mainifra…
27environment.addStyle({"top":dim.height-el.main.environment.getSize().offsetHeight+Math.max(documen…
[all …]
/plugin/combo/resources/firebug/
H A Dfirebug-lite-1.2-compressed.js21environment.addStyle({"display":"none","width":lib.util.GetViewport().width+"px"}).insert(document…
23 if(lib.env.ie||lib.env.webkit){el.button.container.environment.addStyle({"paddingTop":"12px"});}
27 if(env.showIconWhenHidden){if(!internal.popupWin){el.firebugIcon.environment.addStyle({"display":en…
29environment.addStyle({"display":env.debug&&'block'||'none'});el.mainiframe.environment.addStyle({"…
33environment.addStyle({"display":"none"});el.mainiframe.environment.addStyle({"display":"none"});if…
34environment.addStyle({"display":"block"});el.button.newWindow.environment.addStyle({"display":"non…
35environment.addStyle({"display":"none"});firebug.el.mainiframe.environment.addStyle({"display":"no…
36environment.addStyle({"height":win.resizer.y[2]+"px"});el.mainiframe.environment.addStyle({"height…
37 …;var dim=lib.util.GetViewport();el.main.environment.addStyle({"width":dim.width+"px"});el.mainifra…
38environment.addStyle({"top":dim.height-el.main.environment.getSize().offsetHeight+Math.max(documen…
[all …]
H A Dfirebug-lite-1.2.js133 …ttribute.set("id","FirebugIFrame").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
134 …IV").attribute.set("id","Firebug").attribute.set('firebugIgnore',true).environment.addStyle({ "dis…
162 el.button.container.environment.addStyle({ "paddingTop":"12px" });
387 el.firebugIcon.environment.addStyle({ "display": env.debug&&'none'||'block' });
406 el.main.environment.addStyle({ "display":env.debug&&'block'||'none' });
407 el.mainiframe.environment.addStyle({ "display":env.debug&&'block'||'none' });
429 el.settings.container.environment.addStyle({
433 el.settings.progressDiv.environment.addStyle({
441 firebug.el.settings.container.environment.addStyle({
453 firebug.el.settings.progressDiv.environment.addStyle({
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
DEnvironmentTest.php13 use Twig\Environment; alias
39 $env = new Environment();
51 $env = new Environment($loader);
62 $env = new Environment();
73 $twig = new Environment($loader, [
97 $twig = new Environment($loader);
105 $twig = new Environment($loader);
114 $twig = new Environment($loader);
124 $twig = new Environment($arrayLoader);
133 $twig = new Environment($arrayLoader);
[all …]
DLexerTest.php12 use Twig\Environment; alias
24 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
34 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
45 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
62 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
87 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
107 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
122 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
134 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
146 …$lexer = new Lexer(new Environment($this->getMockBuilder('\Twig\Loader\LoaderInterface')->getMock(…
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
DLink.php26 protected $environmentType = Environment::class;
56 * @param Environment
58 public function setEnvironment(Environment $environment) argument
60 $this->environment = $environment;
63 * @return Environment
67 return $this->environment;
/plugin/database/
Ddatabase.php46 Environment
137 * Environment Class
142 class Environment { class
172 function Environment () { function in Environment
276 global $environment;
282 for ($i=1;$i<=$environment->NUMBER_OF_BASIC_TYPES;$i++) {
283 $this->columnTypeList[$i] = $environment->TYPES[$i];
291 $this->columnTypeList[$environment->LOOKUP_OFFSET+$lookupCount]
300 foreach ($environment->tableNames as $tableName) {
304 $this->columnTypeList[$environment->REFERENCE_OFFSET+$counter]
[all …]
/plugin/findologicxmlexport/vendor/sebastian/environment/
DREADME.md1 # Environment chapter
5 …on](https://poser.pugx.org/sebastian/environment/v/stable.png)](https://packagist.org/packages/seb…
6 …://travis-ci.org/sebastianbergmann/environment.png?branch=master)](https://travis-ci.org/sebastian…
12 composer require sebastian/environment
16 composer require --dev sebastian/environment
22 use SebastianBergmann\Environment\Runtime;

12345678910>>...30