Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for componentName (0.22 sec)

  1. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/cpp/AbstractCppComponentIntegrationTest.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
    - 8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/staticpod/utils_linux.go

    // RunComponentAsNonRoot updates the pod manifest and the hostVolume permissions to run as non root.
    func RunComponentAsNonRoot(componentName string, pod *v1.Pod, usersAndGroups *users.UsersAndGroups, cfg *kubeadmapi.ClusterConfiguration) error {
    	switch componentName {
    	case kubeadmconstants.KubeAPIServer:
    		return runKubeAPIServerAsNonRoot(
    			pod,
    			usersAndGroups.Users.ID(kubeadmconstants.KubeAPIServerUserName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/register_test.go

    	logsapi "k8s.io/component-base/logs/api/v1"
    	tracingapi "k8s.io/component-base/tracing/api/v1"
    )
    
    func TestComponentConfigSetup(t *testing.T) {
    	pkginfo := &componentconfigtesting.ComponentConfigPackage{
    		ComponentName:      "kubelet",
    		GroupName:          GroupName,
    		SchemeGroupVersion: SchemeGroupVersion,
    		AddToScheme:        AddToScheme,
    		AllowedTags: map[reflect.Type]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 16:55:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/staticpod/utils_others.go

    	v1 "k8s.io/api/core/v1"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/users"
    )
    
    // RunComponentAsNonRoot is a NO-OP on non linux.
    func RunComponentAsNonRoot(componentName string, pod *v1.Pod, usersAndGroups *users.UsersAndGroups, cfg *kubeadmapi.ClusterConfiguration) error {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 983 bytes
    - Viewed (0)
  5. pkg/proxy/apis/config/register_test.go

    	componentconfigtesting "k8s.io/component-base/config/testing"
    	logsapi "k8s.io/component-base/logs/api/v1"
    )
    
    func TestComponentConfigSetup(t *testing.T) {
    	pkginfo := &componentconfigtesting.ComponentConfigPackage{
    		ComponentName:      "kube-proxy",
    		GroupName:          GroupName,
    		SchemeGroupVersion: SchemeGroupVersion,
    		AddToScheme:        AddToScheme,
    		AllowedTags: map[reflect.Type]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 06:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/AbstractCppUnitTestComponentIntegrationTest.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 'unitTest'
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/staticpod/utils.go

    	if err != nil {
    		return errors.Wrapf(err, "failed to marshal manifest for %q to YAML", componentName)
    	}
    
    	filename := kubeadmconstants.GetStaticPodFilepath(componentName, manifestDir)
    
    	if err := os.WriteFile(filename, serialized, 0600); err != nil {
    		return errors.Wrapf(err, "failed to write static pod manifest file for %q (%q)", componentName, filename)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top