Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for useMap (0.04 sec)

  1. guava/src/com/google/common/reflect/Types.java

      }
    
      private static void disallowPrimitiveType(Type[] types, String usedAs) {
        for (Type type : types) {
          if (type instanceof Class) {
            Class<?> cls = (Class<?>) type;
            checkArgument(!cls.isPrimitive(), "Primitive type '%s' used as %s", cls, usedAs);
          }
        }
      }
    
      /** Returns the {@code Class} object of arrays with {@code componentType}. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. cmd/iam-object-store.go

    		g.Go(func() error {
    			userName := strings.TrimSuffix(users[index], ".json")
    			userMP, err := iamOS.loadMappedPolicyInternal(ctx, userName, userType, isGroup)
    			if err != nil && !errors.Is(err, errNoSuchPolicy) {
    				return fmt.Errorf("unable to load the user policy map `%s`: %w", userName, err)
    			}
    			mappedPolicies[index] = userMP
    			return nil
    		}, index)
    	}
    
    	err := errors.Join(g.Wait()...)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 23:40:37 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top