Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for componentName (0.19 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java

            clientMap.put(regex, componentName);
            clientFactoryList.forEach(f -> load(f, regex, componentName));
        }
    
        protected void load(final CrawlerClientFactory crawlerClientFactory, final String regex, final String componentName) {
            if (logger.isDebugEnabled()) {
                logger.debug("loading {}", componentName);
            }
            CrawlerClient client = null;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/common.go

    }
    
    func insertChildrenRecursive(componentName name.ComponentName, tree ComponentTree, children componentNameToListMap) {
    	tree[componentName] = make(ComponentTree)
    	for _, child := range children[componentName] {
    		insertChildrenRecursive(child, tree[componentName].(ComponentTree), children)
    	}
    }
    
    // InstallTreeString returns a string representation of the dependency tree.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. operator/pkg/name/name.go

    	ZtunnelComponentName ComponentName = "Ztunnel"
    
    	// istiod remote component
    	IstiodRemoteComponentName ComponentName = "IstiodRemote"
    
    	// Gateway components
    	IngressComponentName ComponentName = "IngressGateways"
    	EgressComponentName  ComponentName = "EgressGateways"
    
    	// Operator components
    	IstioOperatorComponentName      ComponentName = "IstioOperator"
    	IstioOperatorCustomResourceName ComponentName = "IstioOperatorCustomResource"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. operator/pkg/component/component.go

    	// Version is the Kubernetes version information.
    	Version *version.Info
    }
    
    // IstioComponent defines the interface for a component.
    type IstioComponent interface {
    	// ComponentName returns the name of the component.
    	ComponentName() name.ComponentName
    	// ResourceName returns the name of the resources of the component.
    	ResourceName() string
    	// Namespace returns the namespace for the component.
    	Namespace() string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

        private String componentName;
    
        public ContainerNotAvailableException(final String componentName) {
            super(componentName + " is not available.");
        }
    
        public ContainerNotAvailableException(final String componentName, final Throwable cause) {
            super(componentName + " is not available.", cause);
            this.componentName = componentName;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_value.go

    			"{{.ValueComponentName}}.podDisruptionBudget":   "Components.{{.ComponentName}}.K8s.PodDisruptionBudget",
    			"{{.ValueComponentName}}.podAnnotations":        "Components.{{.ComponentName}}.K8s.PodAnnotations",
    			"{{.ValueComponentName}}.priorityClassName":     "Components.{{.ComponentName}}.K8s.PriorityClassName",
    			"{{.ValueComponentName}}.readinessProbe":        "Components.{{.ComponentName}}.K8s.ReadinessProbe",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/DefaultAdhocSoftwareComponent.java

        private final String componentName;
        private final Map<Configuration, ConfigurationVariantMapping> variants = new LinkedHashMap<>(4);
        private final ObjectFactory objectFactory;
    
        private Set<UsageContext> cachedVariants;
    
        @Inject
        public DefaultAdhocSoftwareComponent(String componentName, ObjectFactory objectFactory) {
            this.componentName = componentName;
            this.objectFactory = objectFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/installer.go

    	i.mu.Unlock()
    
    	// Actually run the install command
    	iArgs.SkipConfirmation = true
    
    	componentName := args.ComponentName
    	if len(componentName) == 0 {
    		componentName = "Istio components"
    	}
    
    	scopes.Framework.Infof("Installing %s on cluster %s: %s", componentName, c.Name(), iArgs)
    	stdOut.Reset()
    	stdErr.Reset()
    	if err := mesh.Install(kubeClient, &mesh.RootArgs{}, iArgs, &stdOut,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate.go

    }
    
    // renderFeatureComponentPathTemplate renders a template of the form <path>{{.ComponentName}}<path> with
    // the supplied parameters.
    func renderFeatureComponentPathTemplate(tmpl string, componentName name.ComponentName) (string, error) {
    	type Temp struct {
    		ComponentName name.ComponentName
    	}
    	ts := Temp{
    		ComponentName: componentName,
    	}
    	return util.RenderTemplate(tmpl, ts)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java

        public interface OnDestroyListener<T> {
            void onDestroy(PooledObject<T> p);
        }
    
        public String getComponentName() {
            return componentName;
        }
    
        public void setComponentName(final String componentName) {
            this.componentName = componentName;
        }
    
        public OnDestroyListener<T> getOnDestroyListener() {
            return onDestroyListener;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top