Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LOCKED (0.03 sec)

  1. cmd/iam-store.go

    func (store *IAMStoreSys) GetAllParentUsers() map[string]ParentUserInfo {
    	cache := store.rlock()
    	defer store.runlock()
    
    	return store.getParentUsers(cache)
    }
    
    // assumes store is locked by caller.
    func (store *IAMStoreSys) getParentUsers(cache *iamCache) map[string]ParentUserInfo {
    	res := map[string]ParentUserInfo{}
    	for _, ui := range cache.iamUsersMap {
    		cred := ui.Credentials
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 87.1K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/lifecycle_test.go

    		                          </Rule>
    		                          </LifecycleConfiguration>`,
    			expectedParsingErr:    nil,
    			expectedValidationErr: nil,
    		},
    		{ // Using ExpiredObjectAllVersions element with an object locked bucket
    			inputConfig: `<LifecycleConfiguration>
                                            <Rule>
                                              <ID>ExpiredObjectAllVersions with object locking</ID>
    		                          <Filter>
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 55.5K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                        .map(Plugin::getArtifactId) // managed by us, groupId is always o.a.m.plugins
                        .toList();
                if (!unversionedPlugins.isEmpty()) {
                    logger.warn("Version not locked for default bindings plugins " + unversionedPlugins
                            + ", you should define versions in pluginManagement section of your " + "pom.xml or parent");
                }
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    			if err == nil {
    				cache.Info.replication = replicationConfig{
    					Config:  rcfg,
    					remotes: tgts,
    				}
    			}
    		}
    	}
    
    	// Check if bucket is object locked.
    	lr, err := globalBucketObjectLockSys.Get(cache.Info.Name)
    	if err != nil {
    		scannerLogOnceIf(ctx, err, cache.Info.Name)
    		return cache, err
    	}
    
    	vcfg, _ := globalBucketVersioningSys.Get(cache.Info.Name)
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 91.7K bytes
    - Viewed (0)
Back to top