Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for componentName (0.23 sec)

  1. operator/pkg/util/progress/progress.go

    	comps := make([]string, 0, len(p.components))
    	wait := make([]string, 0, len(p.components))
    	for c, l := range p.components {
    		comps = append(comps, name.UserFacingComponentName(name.ComponentName(c)))
    		wait = append(wait, l.waitingResources()...)
    	}
    	sort.Strings(comps)
    	sort.Strings(wait)
    	msg := fmt.Sprintf(`Processing resources for %s.`, strings.Join(comps, ", "))
    	if len(wait) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryNamingScheme.java

        String getDescription();
    
        List<String> getVariantDimensions();
    
        /**
         * Creates a copy of this scheme, replacing the component name.
         */
        BinaryNamingScheme withComponentName(String componentName);
    
        /**
         * Creates a copy of this scheme, replacing the role. The 'role' refers to the role that the binary plays within its component.
         */
        BinaryNamingScheme withRole(String role, boolean isMain);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentIntegrationTest.groovy

            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
            expect:
            succeeds "check"
    
            and:
            outputContains("'${componentName}' component in project ':' does not target this operating system.")
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return "xctest"
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. operator/pkg/helm/helm.go

    // HTTP etc.)
    func NewHelmRenderer(operatorDataDir, helmSubdir, componentName, namespace string, version *version.Info) TemplateRenderer {
    	dir := strings.Join([]string{ChartsSubdirName, helmSubdir}, "/")
    	return NewGenericRenderer(manifests.BuiltinOrDir(operatorDataDir), dir, componentName, namespace, version)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftComponentIntegrationTest.groovy

            and:
            buildFile << configureTargetMachines("machines.os('some-other-family')")
    
            expect:
            succeeds taskNameToAssembleDevelopmentBinary
    
            and:
            outputContains("'${componentName}' component in project ':' does not target this operating system.")
        }
    
        def "build task warns when current operating system family is excluded"() {
            given:
            makeSingleProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_test.go

            replicaCount: 2
      egressGateways:
        - name: istio-egressgateway
          enabled: true
          k8s:
            replicaCount: 2
    `
    
    	cases := []struct {
    		name       string
    		component  name.ComponentName
    		values     string
    		expectSkip bool
    	}{
    		{
    			name:       "hpa enabled for pilot without replicas",
    			component:  name.PilotComponentName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            targetBinary.getHeaderFiles() >> fileCollection()
            targetBinary.getResourceFiles() >> fileCollection()
            targetBinary.projectPath >> ":"
            targetBinary.componentName >> "main"
            targetBinary.visualStudioProjectName >> "mainExe"
            targetBinary.visualStudioConfigurationName >> variant
            targetBinary.projectType >> VisualStudioTargetBinary.ProjectType.EXE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/eastwest.go

    	}
    
    	for k, v := range i.cfg.OperatorOptions {
    		setArgs = append(setArgs, fmt.Sprintf("%s=%s", k, v))
    	}
    
    	if err := i.installer.Install(cluster, installArgs{
    		ComponentName: "eastwestgateway",
    		Revision:      revision,
    		Files:         inFileNames,
    		Set:           setArgs,
    	}); err != nil {
    		return err
    	}
    
    	// wait for a ready pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    		for range r.runningTasksTicker.C {
    			r.printRunningTasks()
    		}
    	}()
    }
    
    // Options contains the Run options.
    type Options struct {
    	// Path to the kubeconfig file.
    	Kubeconfig string
    	// ComponentName of the kubeconfig context to use.
    	Context string
    
    	// namespace - k8s namespace for Run command
    	Namespace string
    
    	// DryRun performs all steps but only logs the Run command without running it.
    	DryRun bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    				crNamespace := obj.GetLabels()[helmreconciler.OwningResourceNamespace]
    				componentName := obj.GetLabels()[helmreconciler.IstioComponentLabelStr]
    				var host string
    				if restConfig != nil {
    					host = restConfig.Host
    				}
    				crHash := strings.Join([]string{crName, crNamespace, componentName, host}, "-")
    				oh := object.NewK8sObject(&unstructured.Unstructured{Object: unsObj}, nil, nil).Hash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top