Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for componentName (0.22 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/controlplane/control_plane_test.go

    								Options:       coreComponentOptions,
    								ComponentName: name.IstioBaseComponentName,
    							},
    						},
    					},
    					&component.PilotComponent{
    						IstioComponentBase: &component.IstioComponentBase{
    							CommonComponentFields: &component.CommonComponentFields{
    								Options:       coreComponentOptions,
    								ResourceName:  "test-resource",
    								ComponentName: name.PilotComponentName,
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 04 02:36:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. operator/pkg/name/name_test.go

    	tests := []struct {
    		name string
    		cn   ComponentName
    		want bool
    	}{
    		{
    			name: "ComponentName is IngressGateways",
    			cn:   IngressComponentName,
    			want: true,
    		},
    		{
    			name: "ComponentName is EgressGateways",
    			cn:   EgressComponentName,
    			want: true,
    		},
    		{
    			name: "ComponentName is others",
    			cn:   CNIComponentName,
    			want: false,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectGeneratorTask.groovy

            args.moduleCount.times { m ->
                Map classArgs = args + [componentName: "lib${m + 1}"]
                generateWithTemplate(projectDir, "src/${classArgs.componentName}/headers/pch.h", 'pch.h', classArgs)
            }
            testProject.sourceFiles.times { s ->
                args.moduleCount.times { m ->
                    Map classArgs = args + [componentName: "lib${m + 1}", functionName: "lib${s + 1}"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. 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)
Back to top