Home
last modified time | relevance | path

Searched refs:policy (Results 101 – 125 of 134) sorted by path

123456

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DIlmNamespace.asciidoc40 $params['policy'] = (string) The name of the index lifecycle policy
68 $params['policy'] = (string) The name of the index lifecycle policy
107 $params['policy'] = (string) The name of the index lifecycle policy
108 $params['body'] = (array) The lifecycle policy definition to register
121 $params['index'] = (string) The name of the index to remove policy on
H A DSlmNamespace.asciidoc39 $params['policy_id'] = (string) The id of the snapshot lifecycle policy to remove
52 $params['policy_id'] = (string) The id of the snapshot lifecycle policy to be executed
114 $params['policy_id'] = (string) The id of the snapshot lifecycle policy
115 $params['body'] = (array) The snapshot lifecycle policy definition to register
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Endpoints/Ilm/
H A DDeleteLifecycle.php31 protected $policy; variable in Elasticsearch\\Endpoints\\Ilm\\DeleteLifecycle
35 $policy = $this->policy ?? null;
37 if (isset($policy)) {
38 return "/_ilm/policy/$policy";
55 public function setPolicy($policy): DeleteLifecycle argument
57 if (isset($policy) !== true) {
60 $this->policy = $policy;
[all...]
H A DGetLifecycle.php30 protected $policy; variable in Elasticsearch\\Endpoints\\Ilm\\GetLifecycle
34 $policy = $this->policy ?? null;
36 if (isset($policy)) {
37 return "/_ilm/policy/$policy";
39 return "/_ilm/policy";
54 public function setPolicy($policy): GetLifecycle argument
56 if (isset($policy) !== true) {
59 $this->policy
[all...]
H A DPutLifecycle.php31 protected $policy; variable in Elasticsearch\\Endpoints\\Ilm\\PutLifecycle
35 $policy = $this->policy ?? null;
37 if (isset($policy)) {
38 return "/_ilm/policy/$policy";
65 public function setPolicy($policy): PutLifecycle argument
67 if (isset($policy) !== true) {
70 $this->policy = $policy;
[all...]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
H A DIlmNamespace.php31 * Deletes the specified lifecycle policy definition. A currently used policy cannot be deleted.
33 * $params['policy'] = (string) The name of the index lifecycle policy
41 $policy = $this->extractArgument($params, 'policy');
46 $endpoint->setPolicy($policy);
73 * Returns the specified policy definition. Includes the policy version and last modified date.
75 * $params['policy']
[all...]
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md117 * Extracted setting gap policy to `\Elastica\Aggregation\Traits\GapPolicyTrait` and introduced `\Elastica\Aggregation\GapPolicyInterface` with constants for options by @stchr [#2023](https://github.com/ruflin/Elastica/pull/2023)
697 - Remove index.merge.policy.merge_factor, and set/get MergePolicy as it looks deprecated from ES 1.6
1944 - Elastica_Index_Settings::getMergePolicyMergeFactor and set removed because of enhanced merge policy implementation in ES 0.17.0 https://github.com/elasticsearch/elasticsearch/issues/998
/plugin/externalembed/
H A DREADME.md4 …es domain privacy features allow you to embed content without needing a cookie / privacy policy for
/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md721 - Added tests to ensure SerializeNull policy [\#633](https://github.com/schmittjoh/serializer/pull/…
997 - I want to configure the default exclution policy [\#65](https://github.com/schmittjoh/serializer/…
/plugin/findologicxmlexport/vendor/jms/serializer/doc/cookbook/
H A Dexclusion_strategies.rst14 The default exclusion policy is to exclude nothing. That is, all properties of the
16 then it is easier to change the exclusion policy, and only mark these few properties:
/plugin/findologicxmlexport/vendor/jms/serializer/doc/reference/
H A Dannotations.rst317 `groups` is optional and is used as exclusion policy.
H A Dxml_reference.rst8 …<class name="Fully\Qualified\ClassName" exclusion-policy="ALL" xml-root-name="foo-bar" exclude="tr…
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
H A DExclusionPolicy.php21 public $policy; variable in JMS\\Serializer\\Annotation\\ExclusionPolicy
29 $this->policy = strtoupper($values['value']);
31 if (self::NONE !== $this->policy && self::ALL !== $this->policy) {
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DAnnotationDriver.php94 $exclusionPolicy = $annot->policy;
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG25 security policy)
73 * fixed .. (range operator) in sandbox policy
391 * removed the __toString policy check when the sandbox is disabled
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dapi.rst475 by a policy instance. By default, Twig comes with one policy class:
488 $policy = new \Twig\Sandbox\SecurityPolicy($tags, $filters, $methods, $properties, $functions);
490 With the previous configuration, the security policy will only allow usage of
496 The policy object is the first argument of the sandbox constructor::
498 $sandbox = new \Twig\Extension\SandboxExtension($policy);
513 $sandbox = new \Twig\Extension\SandboxExtension($policy, true);
H A Drecipes.rst335 This method won't catch any sandbox policy violations because the policy
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DSandboxExtension.php25 protected $policy; variable in Twig\\Extension\\SandboxExtension
27 public function __construct(SecurityPolicyInterface $policy, $sandboxed = false) argument
29 $this->policy = $policy;
63 public function setSecurityPolicy(SecurityPolicyInterface $policy) argument
65 $this->policy = $policy;
70 return $this->policy;
76 $this->policy->checkSecurity($tags, $filters, $functions);
83 $this->policy->checkMethodAllowed($obj, $method);
90 $this->policy->checkPropertyAllowed($obj, $method);
97 $this->policy->checkMethodAllowed($obj, '__toString');
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DSandboxTest.php321 $policy = new SecurityPolicy($tags, $filters, $methods, $properties, $functions);
322 $twig->addExtension(new SandboxExtension($policy, $sandboxed));
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DIntegrationTest.php37 $policy = new SecurityPolicy([], [], [], [], ['dump']);
41 new SandboxExtension($policy, false),
H A DTemplateTest.php91 $policy = new SecurityPolicy([], [], [/*method*/], [/*prop*/], []);
92 $twig->addExtension(new SandboxExtension($policy, !$allowed));
/plugin/gtime/gtlib/asn1/tsp/
H A DTSPTSTInfo.php56 private $policy; variable in TSPTSTInfo
103 $policy = $object->getObjectAt(1);
105 if (!$policy instanceof ASN1ObjectId) {
109 $this->policy = $policy->getValue();
218 $sequence->add(new ASN1ObjectId($this->policy));
283 return $this->policy;
/plugin/jcapture/lib/
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/lib/
H A Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/mediathumbnails/
H A Ddokuwiki_plugin_page.wiki42 … in your dokuwiki config.) This may be due to a security policy defined in ImageMagick's `policy.x…
44 <code><policy domain="coder" rights="none" pattern="PDF" /></code>
48 <code><policy domain="coder" rights="read|write" pattern="PDF" /></code>
133 * v0.92 (Added checks for ImageMagick security policy issues)

123456