Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for componentName (0.26 sec)

  1. operator/pkg/translate/translate_common.go

    func IsComponentEnabledInSpec(componentName name.ComponentName, controlPlaneSpec *v1alpha1.IstioOperatorSpec) (bool, error) {
    	componentNodeI, found, err := tpath.GetFromStructPath(controlPlaneSpec, "Components."+string(componentName)+".Enabled")
    	if err != nil {
    		return false, fmt.Errorf("error in IsComponentEnabledInSpec GetFromStructPath componentEnabled for component=%s: %s",
    			componentName, err)
    	}
    	if !found || componentNodeI == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/prune.go

    	h.opts.Log.LogAndPrintf("  Removed %s.", oh)
    	return nil
    }
    
    // RemoveObject removes object with objHash in componentName from the object cache.
    func (h *HelmReconciler) removeFromObjectCache(componentName, objHash string) {
    	crHash, err := h.getCRHash(componentName)
    	if err != nil {
    		scope.Error(err.Error())
    	}
    	cache.RemoveObject(crHash, objHash)
    	scope.Infof("Removed object %s from Cache.", objHash)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistry.java

        }
    
        public DefaultVisualStudioProject createProject(String vsProjectName, String componentName) {
            assert findByName(vsProjectName) == null;
            DefaultVisualStudioProject vsProject = getInstantiator().newInstance(DefaultVisualStudioProject.class, vsProjectName, componentName, fileResolver, objectFactory, providerFactory);
            add(vsProject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/controlplane/manifests.go

    			} else {
    				if usersAndGroups != nil {
    					if err := staticpodutil.RunComponentAsNonRoot(componentName, &spec, usersAndGroups, cfg); err != nil {
    						return errors.Wrapf(err, "failed to run component %q as non-root", componentName)
    					}
    				}
    			}
    		}
    
    		// if patchesDir is defined, patch the static Pod manifest
    		if patchesDir != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate.go

    		return err
    	}
    
    	if len(mgArgs.Components) != 0 {
    		filteredManifests := name.ManifestMap{}
    		for _, cArg := range mgArgs.Components {
    			componentName := name.ComponentName(cArg)
    			if cManifests, ok := manifests[componentName]; ok {
    				filteredManifests[componentName] = cManifests
    			} else {
    				return fmt.Errorf("incorrect component name: %s. Valid options: %v", cArg, name.AllComponentNames)
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/DefaultVisualStudioProject.java

        private final ConfigurableFileCollection headerFiles;
    
        public DefaultVisualStudioProject(String name, String componentName, PathToFileResolver fileResolver, ObjectFactory objectFactory, ProviderFactory providerFactory) {
            this.name = name;
            this.componentName = componentName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

            this.dimensions = dimensions;
            this.dimensionPrefix = createPrefix(dimensions);
        }
    
        public static BinaryNamingScheme component(@Nullable String componentName) {
            return new DefaultBinaryNamingScheme(componentName, null, null, null, false, Collections.<String>emptyList());
        }
    
        @Override
        public BinaryNamingScheme withVariantDimension(String dimension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectMapperTest.groovy

            VisualStudioTargetBinary targetBinary = Mock(VisualStudioTargetBinary)
            targetBinary.projectPath >> values.get("projectPath", ":")
            targetBinary.componentName >> values.get("componentName", "exeName")
            targetBinary.variantDimensions >> values.get("variantDimensions", ['buildTypeOne'])
            targetBinary.projectType >> values.get("projectType", EXE)
            return targetBinary
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/reconciler.go

    // Otherwise, if the map key/value is missing, one is created.
    func setStatus(s map[string]*v1alpha1.InstallStatus_VersionStatus, componentName name.ComponentName, status v1alpha1.InstallStatus_Status, err error) {
    	cn := string(componentName)
    	if status == v1alpha1.InstallStatus_NONE {
    		delete(s, cn)
    		return
    	}
    	if _, ok := s[cn]; !ok {
    		s[cn] = &v1alpha1.InstallStatus_VersionStatus{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/constants/constants_test.go

    		)
    	}
    }
    
    func TestGetStaticPodFilepath(t *testing.T) {
    	var tests = []struct {
    		componentName, manifestsDir, expected string
    	}{
    		{
    			componentName: "kube-apiserver",
    			manifestsDir:  "/etc/kubernetes/manifests",
    			expected:      "/etc/kubernetes/manifests/kube-apiserver.yaml",
    		},
    		{
    			componentName: "kube-controller-manager",
    			manifestsDir:  "/etc/kubernetes/manifests/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top