- Sort Score
- Result 10 results
- Languages All
Results 371 - 380 of 1,390 for delete (0.16 sec)
-
cmd/admin-handlers-users_test.go
c.Fatalf("policy could be unexpectedly deleted!") } // 6. Delete the user and then delete the policy. err = s.adm.RemoveUser(ctx, accessKey) if err != nil { c.Fatalf("user could not be deleted: %v", err) } err = s.adm.RemoveCannedPolicy(ctx, policy) if err != nil { c.Fatalf("policy del err: %v", err) } } func (s *TestSuiteIAM) TestCannedPolicies(c *check) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 22 00:33:43 UTC 2024 - 47.3K bytes - Viewed (0) -
docs/em/docs/tutorial/first-steps.md
1οΈβ£: * `POST` * `GET` * `PUT` * `DELETE` ...& π π π: * `OPTIONS` * `HEAD` * `PATCH` * `TRACE` πΊπΈπ π οΈ, π πͺ π π β‘ βοΈ 1οΈβ£ (βοΈ π ) π« "π©βπ¬". --- πβ π π, π π βοΈ π« π― πΊπΈπ π©βπ¬ π π― π―. π π βοΈ: * `POST`: β π½. * `GET`: β π½. * `PUT`: βΉ π½. * `DELETE`: β π½. , π, π πΊπΈπ π©βπ¬ π€ "π οΈ".
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8K bytes - Viewed (0) -
internal/config/config.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 37.7K bytes - Viewed (0) -
docs/en/docs/tutorial/first-steps.md
Normally you use: * `POST`: to create data. * `GET`: to read data. * `PUT`: to update data. * `DELETE`: to delete data. So, in OpenAPI, each of the HTTP methods is called an "operation". We are going to call them "**operations**" too. #### Define a *path operation decorator* {* ../../docs_src/first_steps/tutorial001.py hl[6] *}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 26 11:48:16 UTC 2024 - 11.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog_details.jsp
</button> <c:if test="${editable}"> <button type="button" class="btn btn-danger" name="delete" data-toggle="modal" data-target="#confirmToDelete" value="<la:message key="labels.joblog_button_delete" />">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 9.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
- [Deployments](#deployments) - [kubectl rolling-update: < v1.4.0 client vs >=v1.4.0 cluster](#kubectl-rolling-update--v140-client-vs-v140-cluster) - [kubectl delete: < v1.4.0 client vs >=v1.4.0 cluster](#kubectl-delete--v140-client-vs-v140-cluster) - [DELETE operation in REST API](#delete-operation-in-rest-api) - [Action Required Before Upgrading](#action-required-before-upgrading) - [optionally, remove the old secret](#optionally-remove-the-old-secret)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/CrudMode.java
package org.codelibs.fess.app.web; public class CrudMode { public static final int LIST = 0; public static final int CREATE = 1; public static final int EDIT = 2; public static final int DELETE = 3; public static final int DETAILS = 4; protected CrudMode() { // nothing }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 937 bytes - Viewed (0) -
cni/pkg/repair/monitoring.go
// limitations under the License. package repair import ( "istio.io/istio/pkg/monitoring" ) var ( typeLabel = monitoring.CreateLabel("type") deleteType = "delete" repairType = "repair" labelType = "label" resultLabel = monitoring.CreateLabel("result") resultSuccess = "success" resultSkip = "skip" resultFail = "fail" podsRepaired = monitoring.NewSum(
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Dec 20 22:14:13 UTC 2023 - 1K bytes - Viewed (0) -
docs/pl/docs/tutorial/first-steps.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:51:30 UTC 2024 - 9.6K bytes - Viewed (0) -
tests/prepared_stmt_test.go
t.Errorf("Failed to commit transaction, got error %v\n", err) } if result := db.Where("name=?", "zzjin").Delete(&User{}); result.Error != nil || result.RowsAffected != 1 { t.Fatalf("Failed, got error: %v, rows affected: %v", result.Error, result.RowsAffected) } tx2 := db.Begin() if result := tx2.Where("name=?", "zzjin").Delete(&User{}); result.Error != nil || result.RowsAffected != 0 {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Aug 22 11:02:05 UTC 2024 - 8.5K bytes - Viewed (0)