- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 184 for sitten (0.19 sec)
-
docs/sts/etcd.md
--name etcd-gcr-v3.3.9 \ gcr.io/etcd-development/etcd:v3.3.9 \ /usr/local/bin/etcd \ --name s1 \ --data-dir /etcd-data \ --listen-client-urls http://0.0.0.0:2379 \ --advertise-client-urls http://0.0.0.0:2379 \ --listen-peer-urls http://0.0.0.0:2380 \ --initial-advertise-peer-urls http://0.0.0.0:2380 \ --initial-cluster s1=http://0.0.0.0:2380 \ --initial-cluster-token tkn \
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 3.4K bytes - Viewed (0) -
docs_src/response_change_status_code/tutorial001.py
from fastapi import FastAPI, Response, status app = FastAPI() tasks = {"foo": "Listen to the Bar Fighters"} @app.put("/get-or-create-task/{task_id}", status_code=200) def get_or_create_task(task_id: str, response: Response): if task_id not in tasks: tasks[task_id] = "This didn't exist before" response.status_code = status.HTTP_201_CREATED
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Mar 26 19:09:53 UTC 2020 - 391 bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
return readMethod != null; } @Override public final Method getWriteMethod() { return writeMethod; } /** * setterメソッドを設定します。 * * @param writeMethod * setterメソッド */ protected final void setWriteMethod(final Method writeMethod) { this.writeMethod = writeMethod; if (writeMethod != null) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 15.3K bytes - Viewed (0) -
tests/test_tutorial/test_response_change_status_code/test_tutorial001.py
client = TestClient(app) def test_path_operation(): response = client.put("/get-or-create-task/foo") print(response.content) assert response.status_code == 200, response.text assert response.json() == "Listen to the Bar Fighters" response = client.put("/get-or-create-task/bar") assert response.status_code == 201, response.text
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Jul 09 18:06:12 UTC 2020 - 521 bytes - Viewed (0) -
docs/auditlog/auditlog-echo.md
# `auditlog-echo`: A tool to view MinIO Audit logs on the console 1. Run the tool with: ``` go run docs/auditlog/auditlog-echo.go ``` The listen port has a default value (8080), but can be set with the `-port` flag. 2. Configure audit logging in MinIO with for example: ``` mc admin config set myminio audit_webhook enable=on endpoint=http://localhost:8080 ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 01 21:31:13 UTC 2024 - 447 bytes - Viewed (0) -
.mailmap
Anis Elleuch <******@****.***> Frederick F. Kautz IV <******@****.***> <******@****.***> Harshavardhana <******@****.***> <******@****.***> Harshavardhana <******@****.***> <badger@gitter.im> Harshavardhana <******@****.***> Krishna Srinivas <******@****.***> <******@****.***> Matthew Farrellee <******@****.***>
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Apr 09 18:39:42 UTC 2019 - 835 bytes - Viewed (0) -
cni/pkg/nodeagent/cni-watcher.go
} }() context.AfterFunc(s.ctx, func() { if err := s.cniListenServer.Close(); err != nil { log.Errorf("CNI listen server terminated with error: %v", err) } else { log.Debug("CNI listen server terminated") } }) return nil } func (s *CniPluginServer) handleAddEvent(w http.ResponseWriter, req *http.Request) { if req.Body == nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 02 18:48:50 UTC 2024 - 6.7K bytes - Viewed (0) -
.github/workflows/multipart/docker-compose-site2.yaml
site2-minio2: <<: *minio-common hostname: site2-minio2 volumes: - site2-data2-1:/data1 - site2-data2-2:/data2 site2-minio3: <<: *minio-common hostname: site2-minio3 volumes: - site2-data3-1:/data1 - site2-data3-2:/data2 site2-minio4: <<: *minio-common hostname: site2-minio4 volumes: - site2-data4-1:/data1 - site2-data4-2:/data2
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 30 10:13:56 UTC 2023 - 1.5K bytes - Viewed (0) -
docs/de/docs/advanced/index.md
Und es zeigt deren wahres Engagement für FastAPI und seine **Gemeinschaft** (Sie), da diese Ihnen nicht nur eine **gute Lernerfahrung** bieten möchten, sondern auch sicherstellen möchten, dass Sie über ein **gutes und gesundes Framework verfügen **, FastAPI. 🙇 Vielleicht möchten Sie ihre Kurse ausprobieren:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/de/docs/deployment/https.md
* Für HTTPS muss **der Server** über von einem **Dritten** generierte **„Zertifikate“** verfügen. * Diese Zertifikate werden tatsächlich vom Dritten **erworben** und nicht „generiert“. * Zertifikate haben eine **Lebensdauer**. * Sie **verfallen**. * Und dann müssen sie vom Dritten **erneuert**, **erneut erworben** werden. * Die Verschlüsselung der Verbindung erfolgt auf **TCP-Ebene**.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 13.6K bytes - Viewed (0)