Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for GetAliases (0.15 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

                            .actionGet(suggestSettings.getIndicesTimeout());
                    getAliasesResponse.getAliases().keySet().forEach(prevIndices::add);
                }
    
                final String mappingSource = getDefaultMappings();
                final String settingsSource = getDefaultIndexSettings();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/names/controller_names.go

    // They can only be changed if absolutely necessary. For example if an inappropriate name was chosen in the past, or if the scope of the controller changes.
    // When a name is changed, the old name should be aliased in app.ControllerDescriptor#GetAliases, while preserving all old aliases.
    // This is done to achieve backwards compatibility
    //
    // USE CASES
    // The following places should use the controller name constants, when:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager_test.go

    			alphaFeatures.Insert(feature)
    		}
    
    	}
    
    	for name, controller := range NewControllerDescriptors() {
    		if len(controller.GetAliases()) == 0 {
    			continue
    		}
    
    		requiredFeatureGates := controller.GetRequiredFeatureGates()
    		if len(requiredFeatureGates) == 0 {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager.go

    	return append([]featuregate.Feature(nil), r.requiredFeatureGates...)
    }
    
    // GetAliases returns aliases to ensure backwards compatibility and should never be removed!
    // Only addition of new aliases is allowed, and only when a canonical name is changed (please see CHANGE POLICY of controller names)
    func (r *ControllerDescriptor) GetAliases() []string {
    	return append([]string(nil), r.aliases...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            String interfaces = isProvider ? " implements VersionNotationSupplier" : "";
            String versionsClassName = getClassName(classNode);
            Set<String> versionAliases = classNode.getAliases();
            writeLn("public static class " + versionsClassName + " extends VersionFactory " + interfaces + " {");
            writeLn();
            indent(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top