Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for seenTypes (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/type/ModelTypes.java

                }
                // Do not reprocess
                if (!seenTypes.add(type)) {
                    continue;
                }
    
                Class<?> superclass = rawClass.getSuperclass();
                if (superclass != null) {
                    ModelType<?> superType = ModelType.of(superclass);
                    if (!seenTypes.contains(superType)) {
                        queue.add(superType);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/authorizer/config.go

    		lastLoadedConfig: config.AuthorizationConfiguration,
    		reloadInterval:   time.Minute,
    	}
    
    	seenTypes := sets.New[authzconfig.AuthorizerType]()
    
    	// Build and store authorizers which will persist across reloads
    	for _, configuredAuthorizer := range config.AuthorizationConfiguration.Authorizers {
    		seenTypes.Insert(configuredAuthorizer.Type)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation.go

    				}
    			}
    		}
    
    		if !opts.allowDuplicateConditionTypes {
    			if seenTypes[c.Type] {
    				allErrs = append(allErrs, field.Duplicate(fldPath.Index(i).Child("type"), c.Type))
    			}
    			seenTypes[c.Type] = true
    		}
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. pkg/apis/apiserverinternal/validation/validation.go

    	// We do not verify that the condition type or the condition status is
    	// a predefined one because we might add more type or status later.
    	seenType := make(map[apiserverinternal.StorageVersionConditionType]int)
    	for i, condition := range conditions {
    		if ii, ok := seenType[condition.Type]; ok {
    			allErrs = append(allErrs, field.Invalid(fldPath.Index(i).Child("type"), string(condition.Type),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top