- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,552 for targIP (0.05 sec)
-
internal/event/targetlist_test.go
- sendErr bool
- closeErr bool
- }
- func (target ExampleTarget) ID() TargetID {
- return target.id
- }
- // Save - Sends event directly without persisting.
- func (target ExampleTarget) Save(eventData Event) error {
- return target.send(eventData)
- }
- // Store - Returns a nil store.
- func (target ExampleTarget) Store() TargetStore {
- return nil
- }
- func (target ExampleTarget) send(eventData Event) error {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 05 10:16:33 UTC 2023 - 6.1K bytes - Viewed (0) -
internal/event/target/webhook.go
- }
- // ID - returns target ID.
- func (target *WebhookTarget) ID() event.TargetID {
- return target.id
- }
- // Name - returns the Name of the target.
- func (target *WebhookTarget) Name() string {
- return target.ID().String()
- }
- // IsActive - Return true if target is up and active
- func (target *WebhookTarget) IsActive() (bool, error) {
- if err := target.init(); err != nil {
- return false, err
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 8.8K bytes - Viewed (0) -
docs/en/docs/index.md
- ---
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 20.4K bytes - Viewed (0) -
docs/ru/docs/features.md
- * <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank"><strong>Swagger UI</strong></a>, с интерактивным взаимодействием, вызывает и тестирует ваш API прямо из браузера.
- ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
- * Альтернативная документация API в <a href="https://github.com/Rebilly/ReDoc" class="external-link" target="_blank"><strong>ReDoc</strong></a>.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.2K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableIntArray.java
- @Override
- public boolean contains(@CheckForNull Object target) {
- return indexOf(target) >= 0;
- }
- @Override
- public int indexOf(@CheckForNull Object target) {
- return target instanceof Integer ? parent.indexOf((Integer) target) : -1;
- }
- @Override
- public int lastIndexOf(@CheckForNull Object target) {
- return target instanceof Integer ? parent.lastIndexOf((Integer) target) : -1;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 22.2K bytes - Viewed (0) -
docs/en/docs/fastapi-people.md
- * Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
- * Help [manage the repository](management-tasks.md){.internal-link target=_blank} (team members).
- All these tasks help maintain the repository.
- A round of applause to them. 👏 🙇
- ## Team
- This is the current list of team members. 😎
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 9.7K bytes - Viewed (0) -
docs/lambda/README.md
- ```
- ### Lambda Target with Auth Token
- If your lambda target expects an authorization token then you can enable it per function target as follows
- ```
- MINIO_LAMBDA_WEBHOOK_ENABLE_function=on MINIO_LAMBDA_WEBHOOK_ENDPOINT_function=http://localhost:5000 MINIO_LAMBDA_WEBHOOK_AUTH_TOKEN="mytoken" minio server /data &
- ```
- ### Lambda Target with mTLS authentication
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Apr 04 19:15:28 UTC 2023 - 7.6K bytes - Viewed (0) -
internal/config/lambda/event/targetlist.go
- }
- // TargetList - holds list of targets indexed by target ID.
- type TargetList struct {
- sync.RWMutex
- targets map[TargetID]Target
- }
- // Add - adds unique target to target list.
- func (list *TargetList) Add(targets ...Target) error {
- list.Lock()
- defer list.Unlock()
- for _, target := range targets {
- if _, ok := list.targets[target.ID()]; ok {
- return fmt.Errorf("target %v already exists", target.ID())
- }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Mar 07 16:12:41 UTC 2023 - 4.3K bytes - Viewed (0) -
docs/pl/docs/help-fastapi.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 14.9K bytes - Viewed (0) -
docs/yo/docs/index.md
- ---
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 24.1K bytes - Viewed (0)