Home
last modified time | relevance | path

Searched refs:instance (Results 51 – 75 of 405) sorted by relevance

12345678910>>...17

/plugin/authgooglesheets/vendor/google/apiclient-services/src/RemoteBuildExecution/
H A DGoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateInstanceRequest.php30 public function setInstance(GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance $instance) argument
32 $this->instance = $instance;
39 return $this->instance;
H A DGoogleDevtoolsRemotebuildexecutionAdminV1alphaUpdateInstanceRequest.php31 public function setInstance(GoogleDevtoolsRemotebuildexecutionAdminV1alphaInstance $instance) argument
33 $this->instance = $instance;
40 return $this->instance;
/plugin/latexit/classes/
H A DLabelHandler.php19 protected static $instance; variable in LabelHandler
36 if(!isset(LabelHandler::$instance)) {
37 LabelHandler::$instance = new LabelHandler();
39 return LabelHandler::$instance;
H A DRecursionHandler.php20 protected static $instance; variable in RecursionHandler
32 if(!isset(RecursionHandler::$instance)) {
33 RecursionHandler::$instance = new RecursionHandler();
35 return RecursionHandler::$instance;
H A DBibHandler.php44 protected static $instance; variable in BibHandler
51 if(!isset(BibHandler::$instance)) {
52 BibHandler::$instance = new BibHandler();
54 return BibHandler::$instance;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/
H A DTargetInstance.php37 public $instance; variable in Google\\Service\\Compute\\TargetInstance
108 public function setInstance($instance) argument
110 $this->instance = $instance;
117 return $this->instance;
H A DManagedInstance.php34 public $instance; variable in Google\\Service\\Compute\\ManagedInstance
81 public function setInstance($instance) argument
83 $this->instance = $instance;
90 return $this->instance;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Spanner/
H A DCreateInstanceMetadata.php68 public function setInstance(Instance $instance) argument
70 $this->instance = $instance;
77 return $this->instance;
H A DUpdateInstanceMetadata.php68 public function setInstance(Instance $instance) argument
70 $this->instance = $instance;
77 return $this->instance;
/plugin/gtime/gtlib/util/
H A DGTBase32.php34 private static $instance; variable in GTBase32
81 if (self::$instance == null) {
82 self::$instance = new GTBaseX("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", false, '=');
85 return self::$instance;
H A DGTBase16.php34 private static $instance; variable in GTBase16
95 if (self::$instance == null) {
96 self::$instance = new GTBaseX("0123456789ABCDEF", false, ' ');
99 return self::$instance;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/
H A DUser.php33 public $instance; variable in Google\\Service\\SQLAdmin\\User
90 public function setInstance($instance) argument
92 $this->instance = $instance;
99 return $this->instance;
H A DBackupRun.php51 public $instance; variable in Google\\Service\\SQLAdmin\\BackupRun
196 public function setInstance($instance) argument
198 $this->instance = $instance;
205 return $this->instance;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/BigtableAdmin/
H A DCreateInstanceRequest.php52 public function setInstance(Instance $instance) argument
54 $this->instance = $instance;
61 return $this->instance;
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/Actions/
H A DLexerMoreAction.php14 * implemented as a singleton instance exposed by {@see LexerMoreAction::INSTANCE()}.
21 * Provides a singleton instance of this parameterless lexer action.
23 public static function instance() : self function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerMoreAction
25 static $instance;
27 return $instance = $instance ?? new self();
H A DLexerPopModeAction.php14 * implemented as a singleton instance exposed by {@see self::instance())}.
21 * Provides a singleton instance of this parameterless lexer action.
23 public static function instance() : self function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerPopModeAction
25 static $instance;
27 return $instance = $instance ?? new self();
H A DLexerSkipAction.php14 * implemented as a singleton instance exposed by {@see self::instance()}.
21 * Provides a singleton instance of this parameterless lexer action.
23 public static function instance() : self function in Antlr\\Antlr4\\Runtime\\Atn\\Actions\\LexerSkipAction
25 static $instance;
27 return $instance = $instance ?? new self();
/plugin/issuelinks/classes/
H A DServiceProvider.php10 protected static $instance; variable in dokuwiki\\plugin\\issuelinks\\classes\\ServiceProvider
34 if (null === self::$instance || $forcereload) {
35 self::$instance = new self();
37 return self::$instance;
/plugin/issuelinks/services/
H A DAbstractService.php10 protected static $instance = []; variable in dokuwiki\\plugin\\issuelinks\\services\\AbstractService
15 if (empty(self::$instance[$class]) || $forcereload) {
16 self::$instance[$class] = new $class();
18 return self::$instance[$class];
/plugin/findologicxmlexport/vendor/sebastian/comparator/src/
H A DFactory.php26 private static $instance; variable in SebastianBergmann\\Comparator\\Factory
52 if (self::$instance === null) {
53 self::$instance = new self;
56 return self::$instance;
/plugin/edittable/lib/
H A Dhandsontable.full.js6817 this.instance = instance;
16492 cellProperties.instance = instance;
16883 …var obj = instance.getSourceData() && instance.getSourceData()[0] ? instance.getSourceData()[0] : …
25151 this.instance = instance;
25217 mainWOT = that.instance.cloneSource || that.instance;
27751 this.instance = wtTable.instance;
31460 output = instance[action].apply(instance, args);
33293 this.instance = instance;
42082 var instance;
47297 instance.search = new Search(instance);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/SQLAdmin/Resource/
H A DProjectsInstancesCreateEphemeral.php40 * @param string $instance Cloud SQL instance ID. This does not include the
46 …public function create($project, $instance, SslCertsCreateEphemeralRequest $postBody, $optParams =… argument
48 $params = ['project' => $project, 'instance' => $instance, 'postBody' => $postBody];
/plugin/oauth/
H A DSession.php11 protected static $instance; variable in dokuwiki\\plugin\\oauth\\Session
27 if (self::$instance === null) {
28 self::$instance = new Session();
30 return self::$instance;
/plugin/swiftmail/Swift/Message/
H A DMime.php224 …if ($non_ascii && is_string($data) && strlen($data) > 0 && !Swift_Message_Encoder::instance()->is7…
315 $qp_os = Swift_Message_Encoder::instance()->QPEncodeFile($this->getData(), 76, $this->LE);
321 …$this->cache->write("body", Swift_Message_Encoder::instance()->QPEncode($this->getData(), 76, 0, f…
327 … $b64_os = Swift_Message_Encoder::instance()->base64EncodeFile($this->getData(), 76, $this->LE);
333 …$this->cache->write("body", Swift_Message_Encoder::instance()->base64Encode($this->getData(), 76, …
351 … $os = Swift_Message_Encoder::instance()->encode7BitFile($this->getData(), $this->wrap, $this->LE);
357 …$this->cache->write("body", Swift_Message_Encoder::instance()->encode7Bit($this->getData(), $this-…
363 … $os = Swift_Message_Encoder::instance()->encode8BitFile($this->getData(), $this->wrap, $this->LE);
369 …$this->cache->write("body", Swift_Message_Encoder::instance()->encode8Bit($this->getData(), $this-…
/plugin/refnotes/
H A Dcore.php23 private static $instance = NULL; variable in refnotes_parser_core
33 if (self::$instance == NULL) {
34 self::$instance = new refnotes_parser_core();
37 return self::$instance;
322 private static $instance = NULL; variable in refnotes_renderer_core
327 * stage. The instance has to be shared between the plugins, and since there should be no
328 * more than one rendering pass during a DW page request, a single instance of the syntax
332 if (self::$instance == NULL) {
333 self::$instance = new refnotes_renderer_core();
336 return self::$instance;
[all...]

12345678910>>...17