Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 511 - 520 of 538 for agents (0.06 seconds)

  1. docs/metrics/prometheus/grafana/minio-dashboard.json

            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "target": {
              "limit": 100,
              "matchAny": false,
              "tags": [],
              "type": "dashboard"
            },
            "type": "dashboard"
          }
        ]
      },
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon Aug 04 01:46:49 GMT 2025
    - 93.1K bytes
    - Click Count (0)
  2. cmd/admin-handlers.go

    	setEventStreamHeaders(w)
    
    	// Trace Publisher and peer-trace-client uses nonblocking send and hence does not wait for slow receivers.
    	// Keep 100k buffered channel.
    	// If receiver cannot keep up with that we drop events.
    	traceCh := make(chan []byte, 100000)
    	peers, _ := newPeerRestClients(globalEndpoints)
    	err = globalTrace.SubscribeJSON(traceOpts.TraceTypes(), traceCh, ctx.Done(), func(entry madmin.TraceInfo) bool {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 99.7K bytes
    - Click Count (0)
  3. docs/uk/docs/deployment/docker.md

    ```Dockerfile
    # ⛔️ Не робіть так
    CMD fastapi run app/main.py --port 80
    ```
    
    Обов’язково завжди використовуйте exec form, щоб FastAPI міг коректно завершувати роботу та щоб були викликані [події тривалості життя](../advanced/events.md).
    
    Докладніше про це можна прочитати в [документації Docker про shell та exec form](https://docs.docker.com/reference/dockerfile/#shell-and-exec-form).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 44.2K bytes
    - Click Count (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        Session withRemoteRepositories(@Nonnull List<RemoteRepository> repositories);
    
        /**
         * Register the given listener which will receive all events.
         *
         * @param listener the listener to register
         * @throws NullPointerException if {@code listener} is null
         */
        void registerListener(@Nonnull Listener listener);
    
        /**
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jul 03 14:18:26 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  5. docs/es/docs/async.md

    def get_sequential_burgers(number: int):
        # Hacer algunas cosas secuenciales para crear las hamburguesas
        return burgers
    ```
    
    Con `async def`, Python sabe que, dentro de esa función, tiene que estar atento a las expresiones `await`, y que puede "pausar" ⏸ la ejecución de esa función e ir a hacer algo más 🔀 antes de regresar.
    
    Cuando deseas llamar a una función `async def`, tienes que "await" dicha función. Así que, esto no funcionará:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_ko.properties

    labels.storage_type_gcs=GCS
    labels.storage_type_s3=S3
    labels.search_file_proxy_enabled=Search File Proxy
    labels.search_use_browser_locale=Use Browser Locale
    labels.sso_type=SSO Type
    labels.crawling_user_agent=User Agent
    labels.slack_webhook_urls=Slack Webhook URLs
    labels.google_chat_webhook_urls=Google Chat Webhook URLs
    labels.log_notification_enabled=Log Notification
    labels.log_notification_level=Log Notification Level
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 51.6K bytes
    - Click Count (0)
  7. docs/ja/docs/deployment/docker.md

    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    ```
    
    ⛔️ **Shell** 形式:
    
    ```Dockerfile
    # ⛔️ Don't do this
    CMD fastapi run app/main.py --port 80
    ```
    
    FastAPIが正常にシャットダウンでき、[lifespan events](../advanced/events.md)がトリガーされるように、常に **exec** 形式を使用してください。
    
    詳しくは、[shell形式とexec形式に関するDockerドキュメント](https://docs.docker.com/reference/dockerfile/#shell-and-exec-form)をご覧ください。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 36.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. 50 <br>
         * comment: Maximum number of events to display in notification.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getLogNotificationMaxDisplayEvents();
    
        /**
         * Get the value for the key 'log.notification.max.display.events' as {@link Integer}. <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  9. CHANGELOG/CHANGELOG-1.34.md

    - Fixed SELinux warning controller not to emit events for completed pods. ([#136099](https://github.com/kubernetes/kubernetes/pull/136099), [@jsafrane](https://github.com/jsafrane)) [SIG Apps, Storage and Testing]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:19:43 GMT 2026
    - 368.7K bytes
    - Click Count (2)
  10. docs/zh/docs/deployment/docker.md

    ```
    
    ⛔️ **Shell** 形式:
    
    ```Dockerfile
    # ⛔️ 不要这样
    CMD fastapi run app/main.py --port 80
    ```
    
    务必使用**exec** 形式,以确保 FastAPI 可以优雅停机并触发[生命周期事件](../advanced/events.md)。
    
    你可以在 [Docker 文档(Shell 与 Exec 形式)](https://docs.docker.com/reference/dockerfile/#shell-and-exec-form)中了解更多。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 24.8K bytes
    - Click Count (0)
Back to Top