- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for vers (0.02 sec)
-
cmd/xl-storage-format-v2.go
for _, vers := range versions { if len(vers) == 0 { consistent = false continue } ver := vers[0] if len(tops) == 0 { consistent = true topSig = ver.header } else { consistent = consistent && ver.header == topSig } tops = append(tops, vers[0]) } // Check if done...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1) -
cmd/bucket-handlers.go
func (api objectAPIHandlers) GetBucketLocationHandler(w http.ResponseWriter, r *http.Request) { ctx := newContext(r, w, "GetBucketLocation") defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r)) vars := mux.Vars(r) bucket := vars["bucket"] objectAPI := api.ObjectAPI() if objectAPI == nil { writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL) return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.9K bytes - Viewed (0) -
cmd/peer-rest-server.go
func (s *peerRESTServer) StartProfilingHandler(w http.ResponseWriter, r *http.Request) { if !s.IsValid(w, r) { s.writeErrorResponse(w, errors.New("Invalid request")) return } vars := mux.Vars(r) profiles := strings.Split(vars[peerRESTProfiler], ",") if len(profiles) == 0 { s.writeErrorResponse(w, errors.New("profiler name is missing")) return } globalProfilerMu.Lock() defer globalProfilerMu.Unlock()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 53.4K bytes - Viewed (0) -
cmd/admin-handlers-users.go
ctx := r.Context() objectAPI, _ := validateAdminReq(ctx, w, r, policy.AttachPolicyAdminAction) if objectAPI == nil { return } vars := mux.Vars(r) policyName := vars["policyName"] entityName := vars["userOrGroup"] isGroup := vars["isGroup"] == "true" setReqInfoPolicyName(ctx, policyName) if !isGroup { ok, _, err := globalIAMSys.IsTempUser(entityName)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 90.6K bytes - Viewed (0) -
tests/query_test.go
} sub := dryDB.Clauses(clause.Where{ Exprs: []clause.Expression{ clause.OrConditions{ Exprs: []clause.Expression{ clause.Expr{SQL: "role = ?", Vars: []interface{}{"super_admin"}}, clause.Expr{SQL: "role = ?", Vars: []interface{}{"admin"}}, }, }, }, }) result = dryDB.Where(sub).Find(&User{})
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Jul 22 06:21:04 UTC 2025 - 51K bytes - Viewed (0) -
cmd/xl-storage.go
filePath := pathJoin(volumeDir, partPath) st, err := Lstat(filePath) if err != nil { if osIsNotExist(err) { if !skipAccessCheck { // Stat a volume entry. if verr := Access(volumeDir); verr != nil { if osIsNotExist(verr) { resp = checkPartVolumeNotFound } return } } } if osErrToFileErr(err) == errFileNotFound { resp = checkPartFileNotFound }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 13 11:33:47 UTC 2025 - 91.7K bytes - Viewed (0) -
pom.xml
<prefix>${packaging.fess.home.dir}/es/plugins</prefix> <user>${packaging.fess.user}</user> <group>${packaging.fess.group}</group> </mapper> </data> <!-- Add environment vars file --> <data> <type>file</type> <src>${project.build.directory}/generated-packaging/deb/env/fess</src> <dst>/etc/default/fess</dst> <mapper> <type>perm</type>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0)