Home
last modified time | relevance | path

Searched refs:object (Results 426 – 450 of 1568) sorted by last modified time

1...<<11121314151617181920>>...63

/plugin/pureldap/
H A DLICENSE135 under Section 2) in object code or executable form under the terms of
152 received the program in object code or executable form with such
166 If distribution of executable or object code is made by offering
170 compelled to copy the source along with the object code.
/plugin/pureldap/vendor/freedsx/asn1/
H A DREADME.md52 # Get a BER encoder instance, call decode on it, and $pdu will now be a sequence object.
/plugin/pureldap/vendor/freedsx/ldap/
H A DREADME.md63 # Add a filter object based off a raw string filter...
95 # Create a new LDAP entry object
127 # Search for an entry object to get its current attributes / values
158 # Search for the entry object to delete
161 # Pass the entry object to the delete method of the LDAP client if it was found.
162 # You could also pass a DN object or a simple DN as a string.
H A DCHANGELOG.md70 * Add an LDAP URL parser / object based on RFC 4516.
/plugin/pagebuttons/
H A DLICENSE135 under Section 2) in object code or executable form under the terms of
152 received the program in object code or executable form with such
166 If distribution of executable or object code is made by offering
170 compelled to copy the source along with the object code.
/plugin/include/
H A DCOPYING137 under Section 2) in object code or executable form under the terms of
154 received the program in object code or executable form with such
168 If distribution of executable or object code is made by offering
172 compelled to copy the source along with the object code.
/plugin/commonmark/vendor/league/commonmark/src/
H A DEnvironment.php
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG-0.x.md
/plugin/passpolicy/
H A Dwords.txt2458 object
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/ext/
H A Dmaxminddb.c601 static void maxminddb_free_storage(free_obj_t *object TSRMLS_DC) { in maxminddb_free_storage()
603 php_maxminddb_fetch_object((zend_object *)object TSRMLS_CC); in maxminddb_free_storage()
611 efree(object); in maxminddb_free_storage()
/plugin/quickstats/GEOIP/vendor/geoip2/geoip2/
H A DCHANGELOG.md140 a `GeoIP2\Model\AnonymousIp` object.
H A DLICENSE33 not limited to compiled object code, generated documentation,
H A DREADME.md99 To use this API, you must create a new `\GeoIp2\Database\Reader` object with
121 // This creates the Reader object, which should be reused across
152 // This creates the Reader object, which should be reused across
170 // This creates the Reader object, which should be reused across
188 // This creates the Reader object, which should be reused across
206 // This creates the Reader object, which should be reused across
240 // This creates the Reader object, which should be reused across
260 object with your `$accountId` and `$licenseKey`, then you call the method
279 // This creates a Client object that can be reused across requests.
/plugin/quickstats/GEOIP/vendor/maxmind/web-service-common/
H A DLICENSE33 not limited to compiled object code, generated documentation,
/plugin/quickstats/scripts/php-inet6_1.0.2/
H A DLICENSE132 produce the work, or an object code interpreter used to run it.
134 The "Corresponding Source" for a work in object code form means all
136 work) run the object code and to modify the work, including scripts to
247 You may convey a covered work in object code form under the terms
252 a) Convey the object code in, or embodied in, a physical product
257 b) Convey the object code in, or embodied in, a physical product
261 model, to give anyone who possesses the object code either (1) a
275 d) Convey the object code by offering access from a designated
289 you inform other peers where the object code and Corresponding
295 included in conveying the object code work.
[all …]
/plugin/quickstats/scripts/
H A Dsorttable.js457 Function.prototype.forEach = function(object, block, context) {
458 for (var key in object) {
460 block.call(context, object[key], key, object);
473 var forEach = function(object, block, context) { argument
474 if (object) {
476 if (object instanceof Function) {
479 } else if (object.forEach instanceof Function) {
481 object.forEach(block, context);
483 } else if (typeof object == "string") {
486 } else if (typeof object.length == "number") {
[all …]
/plugin/quickstats/GEOIP/vendor/maxmind-db/reader/
H A DCHANGELOG.md99 object's destructor was called without first having called the constructor.
H A DLICENSE33 not limited to compiled object code, generated documentation,
/plugin/commentsyntax/
H A DLICENSE135 under Section 2) in object code or executable form under the terms of
152 received the program in object code or executable form with such
166 If distribution of executable or object code is made by offering
170 compelled to copy the source along with the object code.
/plugin/bloglinks/
H A DCOPYING137 under Section 2) in object code or executable form under the terms of
154 received the program in object code or executable form with such
168 If distribution of executable or object code is made by offering
172 compelled to copy the source along with the object code.
/plugin/multiorphan/
H A Dscript.js223 var checkResponse = function( name, url, amount, object, $output, actions ) { argument
226 var checkPoint = amount == 0 ? object.wanted : object.linked;
/plugin/strata/helper/
H A Dtriples.php119 function removeTriples($subject=null, $predicate=null, $object=null, $graph=null) { argument
122 foreach(array('subject','predicate','object','graph') as $param) {
149 function fetchTriples($subject=null, $predicate=null, $object=null, $graph=null) { argument
154 foreach(array('subject','predicate','object','graph') as $param) {
176 $sql = "SELECT subject, predicate, object, graph FROM ".self::$readable." WHERE ". implode(" AND ", $filters).$scopeRestriction;
201 * @param object string
205 function addTriple($subject, $predicate, $object, $graph) {
206 return $this->addTriples(array(array('subject'=>$subject, 'predicate'=>$predicate, 'object'=>$object)), $graph);
211 * @param triples array contains all triples as arrays with subject, predicate and object key
187 addTriple($subject, $predicate, $object, $graph) global() argument
[all...]
/plugin/strata/
H A Dmanual.txt27 **Simple Values**: You add simple values to the data block by adding a line like ''field: value''. The field and value are sometimes called the predicate and object respectively.
227 subject predicate: object
243 subject ?predicate [type::hint]: ?object [type::hint]
252 * unless the object is explicitly typed, a typed predicate will propagate its type to the object
/plugin/strata/sql/
H A Dsetup-mysql.sql4 object TEXT NOT NULL, field
9 CREATE INDEX idx_spo ON data(subject(32), predicate(32), object(32)); -- Prefix length is arbitrary
12 CREATE INDEX idx_pso ON data(predicate(32), subject(32), object(32)); -- Prefix length is arbitrary
H A Dsetup-pgsql.sql4 object TEXT NOT NULL, field
9 CREATE INDEX idx_spo ON data(lower(subject), lower(predicate), lower(object));
12 CREATE INDEX idx_pso ON data(lower(predicate), lower(subject), lower(object));

1...<<11121314151617181920>>...63