Home
last modified time | relevance | path

Searched refs:object (Results 376 – 400 of 1568) sorted by last modified time

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

/plugin/authgooglesheets/vendor/google/auth/
H A DCOPYING33 not limited to compiled object code, generated documentation,
H A DLICENSE32 not limited to compiled object code, generated documentation,
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/Resource/
H A DObjectAccessControls.php38 * @param string $object Name of the object. For information about how to URL
50 public function delete($bucket, $object, $entity, $optParams = []) argument
52 $params = ['bucket' => $bucket, 'object' => $object, 'entity' => $entity];
61 * @param string $object Name of the object. For information about how to URL
74 public function get($bucket, $object, $entity, $optParams = []) argument
76 $params = ['bucket' => $bucket, 'object' => $object, 'entity' => $entity];
85 * @param string $object Name of the object. For information about how to URL
107 * @param string $object Name of the object. For information about how to URL
117 public function listObjectAccessControls($bucket, $object, $optParams = []) argument
119 $params = ['bucket' => $bucket, 'object' => $object];
[all …]
H A DObjects.php141 * @param string $object Name of the object. For information about how to URL
161 public function delete($bucket, $object, $optParams = []) argument
163 $params = ['bucket' => $bucket, 'object' => $object];
171 * @param string $object Name of the object. For information about how to URL
193 public function get($bucket, $object, $optParams = []) argument
195 $params = ['bucket' => $bucket, 'object' => $object];
203 * @param string $object Name of the object. For information about how to URL
213 public function getIamPolicy($bucket, $object, $optParams = []) argument
215 $params = ['bucket' => $bucket, 'object' => $object];
313 * @param string $object Name of the object. For information about how to URL
[all …]
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md98 middlewares) or setting a value on an object. Guzzle v6 has chosen the
133 // Notice that we have to return a request object
192 object as a replacement.
378 `GuzzleHttp\Adapter\TransactionInterface` object. You can get references to
395 - POST field and file methods have been removed from the request object. You
446 `GuzzleHttp\Message\ResponseInterface` object that contains a body stream
500 `GuzzleHttp\Event\EventInterface` object that contains context providing
779 * Moved getLinks() from Response to just be used on a Link header object.
812 * Removed the injecting of a request object onto a response object. The methods to get and set a re…
890 `getResponse()` on the exception object.
[all …]
H A DCHANGELOG.md332 wire. A Query object then encodes the value before sending over the wire. This
340 object).
356 * Now properly encoding the supplied path to a URL object, instead of only
367 * Fixed an issue where connection errors still returned response object in
422 Transaction object now exposes the request, response, and client as public
828 * Removed the injecting of a request object onto a response object. The methods to get and set a re…
890 * Redirects now set the response on the original object even in the event of a failure
1258 * Passing request object to the calculateWait method of the ExponentialBackoffPlugin
1259 * Allowing the result of a command object to be changed
1312 * Inspector objects can be injected into a Command object
[all …]
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md55 …lizerFormatter (and Line/Json formatters by extension) to allow changing this after object creation
H A DUPGRADE.md55 - Context/extra data are now sent as an object instead of single keys
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/
H A DGcsObject.php33 public $object; variable in Google\\Service\\OSConfig\\GcsObject
66 public function setObject($object) argument
68 $this->object = $object;
75 return $this->object;
H A DOSPolicyResourceFileGcs.php33 public $object; variable in Google\\Service\\OSConfig\\OSPolicyResourceFileGcs
66 public function setObject($object) argument
68 $this->object = $object;
75 return $this->object;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Datastream/Resource/
H A DProjectsLocationsStreamsObjects.php93 * @param string $object Required. The name of the stream object resource to
99 public function startBackfillJob($object, StartBackfillJobRequest $postBody, $optParams = []) argument
101 $params = ['object' => $object, 'postBody' => $postBody];
109 * @param string $object Required. The name of the stream object resource to
115 public function stopBackfillJob($object, StopBackfillJobRequest $postBody, $optParams = []) argument
117 $params = ['object' => $object, 'postBody' => $postBody];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
H A DDatastream.php626 'path' => 'v1/{+object}:startBackfillJob',
629 'object' => [
636 'path' => 'v1/{+object}:stopBackfillJob',
639 'object' => [
H A DStorage.php673 'object' => [
701 'object' => [
729 'object' => [
752 'object' => [
775 'object' => [
803 'object' => [
953 'object' => [
992 'object' => [
1035 'object' => [
1158 'object' => [
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Storage/
H A DObjectAccessControl.php61 public $object; variable in Google\\Service\\Storage\\ObjectAccessControl
202 public function setObject($object) argument
204 $this->object = $object;
211 return $this->object;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/
H A DStorageSource.php33 public $object; variable in Google\\Service\\CloudBuild\\StorageSource
66 public function setObject($object) argument
68 $this->object = $object;
75 return $this->object;
H A DStorageSourceManifest.php33 public $object; variable in Google\\Service\\CloudBuild\\StorageSourceManifest
66 public function setObject($object) argument
68 $this->object = $object;
75 return $this->object;
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md163 LimitStream can be used to read a subset or slice of an existing stream object.
364 Parses a request message string into a request object.
371 Parses a response message string into a response object.
487 - `string`: Creates a stream object that uses the given string as the contents.
488 - `resource`: Creates a stream object that wraps the given PHP stream resource.
490 stream object will be created that wraps the given iterable. Each time the
495 - `object` with `__toString()`: If the object has the `__toString()` method,
496 the object will be cast to a string and then a stream will be returned that
498 - `NULL`: When `null` is passed, an empty stream object is returned.
499 - `callable` When a callable is passed, a read-only stream object will be
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/
H A DContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource.php33 public $object; variable in Google\\Service\\ContainerAnalysis\\ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
66 public function setObject($object) argument
68 $this->object = $object;
75 return $this->object;
H A DContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest.php33 public $object; variable in Google\\Service\\ContainerAnalysis\\ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest
66 public function setObject($object) argument
68 $this->object = $object;
75 return $this->object;
/plugin/authgooglesheets/vendor/google/apiclient/src/
H A DModel.php153 $object = new stdClass();
159 $object->$key = $this->nullPlaceholderCheck($result);
171 $object->$name = $this->nullPlaceholderCheck($result);
175 return $object;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
H A DItemStructuredData.php46 public function setObject(StructuredDataObject $object) argument
48 $this->object = $object;
55 return $this->object;
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md27 - Works with any object that has a `then` function.
291 When creating a promise object, you can provide an optional `$waitFn` and
482 Some promise libraries implement promises using a deferred object to represent
483 a computation and a promise object to represent the delivery of the result of
/plugin/authgooglesheets/
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/authgooglesheets/vendor/firebase/php-jwt/
H A DREADME.md52 NOTE: This will now be an object instead of an associative array. To get
114 NOTE: This will now be an object instead of an associative array. To get
211 The return value of `JWT::decode` is the generic PHP object `stdClass`. If you'd like to handle wit…
233 - New Key object to prevent key/algorithm type confusion (#365)
286 - Add support for passing an object implementing the `ArrayAccess` interface for
/plugin/authgooglesheets/vendor/google/apiclient/
H A DLICENSE32 not limited to compiled object code, generated documentation,

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