Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,552 for targIP (0.05 sec)

  1. internal/event/targetlist_test.go

    1. sendErr bool
    2. closeErr bool
    3. }
    4.  
    5. func (target ExampleTarget) ID() TargetID {
    6. return target.id
    7. }
    8.  
    9. // Save - Sends event directly without persisting.
    10. func (target ExampleTarget) Save(eventData Event) error {
    11. return target.send(eventData)
    12. }
    13.  
    14. // Store - Returns a nil store.
    15. func (target ExampleTarget) Store() TargetStore {
    16. return nil
    17. }
    18.  
    19. 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)
  2. internal/event/target/webhook.go

    1. }
    2.  
    3. // ID - returns target ID.
    4. func (target *WebhookTarget) ID() event.TargetID {
    5. return target.id
    6. }
    7.  
    8. // Name - returns the Name of the target.
    9. func (target *WebhookTarget) Name() string {
    10. return target.ID().String()
    11. }
    12.  
    13. // IsActive - Return true if target is up and active
    14. func (target *WebhookTarget) IsActive() (bool, error) {
    15. if err := target.init(); err != nil {
    16. return false, err
    17. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. docs/en/docs/index.md

    1. ---
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. docs/ru/docs/features.md

    1. * <a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank"><strong>Swagger UI</strong></a>, с интерактивным взаимодействием, вызывает и тестирует ваш API прямо из браузера.
    2.  
    3. ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    4.  
    5. * Альтернативная документация 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)
  5. android/guava/src/com/google/common/primitives/ImmutableIntArray.java

    1. @Override
    2. public boolean contains(@CheckForNull Object target) {
    3. return indexOf(target) >= 0;
    4. }
    5.  
    6. @Override
    7. public int indexOf(@CheckForNull Object target) {
    8. return target instanceof Integer ? parent.indexOf((Integer) target) : -1;
    9. }
    10.  
    11. @Override
    12. public int lastIndexOf(@CheckForNull Object target) {
    13. 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)
  6. docs/en/docs/fastapi-people.md

    1. * Review Pull Requests, [especially important for translations](contributing.md#translations){.internal-link target=_blank}.
    2. * Help [manage the repository](management-tasks.md){.internal-link target=_blank} (team members).
    3.  
    4. All these tasks help maintain the repository.
    5.  
    6. A round of applause to them. 👏 🙇
    7.  
    8. ## Team
    9.  
    10. 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)
  7. docs/lambda/README.md

    1. ```
    2.  
    3. ### Lambda Target with Auth Token
    4.  
    5. If your lambda target expects an authorization token then you can enable it per function target as follows
    6.  
    7. ```
    8. MINIO_LAMBDA_WEBHOOK_ENABLE_function=on MINIO_LAMBDA_WEBHOOK_ENDPOINT_function=http://localhost:5000 MINIO_LAMBDA_WEBHOOK_AUTH_TOKEN="mytoken" minio server /data &
    9. ```
    10.  
    11. ### 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)
  8. internal/config/lambda/event/targetlist.go

    1. }
    2.  
    3. // TargetList - holds list of targets indexed by target ID.
    4. type TargetList struct {
    5. sync.RWMutex
    6. targets map[TargetID]Target
    7. }
    8.  
    9. // Add - adds unique target to target list.
    10. func (list *TargetList) Add(targets ...Target) error {
    11. list.Lock()
    12. defer list.Unlock()
    13.  
    14. for _, target := range targets {
    15. if _, ok := list.targets[target.ID()]; ok {
    16. return fmt.Errorf("target %v already exists", target.ID())
    17. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Mar 07 16:12:41 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. docs/pl/docs/help-fastapi.md

    1. * Napisz mi, w jaki sposób korzystasz z FastAPI (uwielbiam o tym czytać).
    2. * Dowiedz się, gdy ogłoszę coś nowego lub wypuszczę nowe narzędzia.
    3. * Możesz także <a href="https://twitter.com/fastapi" class="external-link" target="_blank"ledzić @fastapi na Twitterze</a> (to oddzielne konto).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. docs/yo/docs/index.md

    1. ---
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top