Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for componentName (0.28 sec)

  1. operator/pkg/helmreconciler/prune_test.go

    			}
    			applyResourcesIntoCluster(t, h, manifestMap)
    		}
    		// delete one iop: iop-test-gw-1, get its pruned resources
    		componentName := string(name.IngressComponentName)
    		resources, err := h1.GetPrunedResources(h1.iop.Spec.Revision, false, componentName)
    		assert.NoError(t, err)
    		assert.Equal(t, true, len(resources) > 0)
    		// check resources, only associated with iop-test-gw-1 istiooperator CR,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/shared.go

    	WaitTimeout time.Duration
    }
    
    func applyManifest(kubeClient kube.Client, client client.Client, manifestStr string,
    	componentName name.ComponentName, opts *applyOptions, iop *v1alpha1.IstioOperator, l clog.Logger,
    ) error {
    	// Needed in case we are running a test through this path that doesn't start a new process.
    	cache.FlushObjectCaches()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Dimensions.java

        private static <T> Collection<T> extractAndValidate(String propertyName, String componentName, SetProperty<T> declared) {
            declared.finalizeValue();
            Collection<T> value = declared.get();
            assertNonEmpty(propertyName, componentName, value);
            return value;
        }
    
        private static void assertNonEmpty(String propertyName, String componentName, Collection<?> property) {
            if (property.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/validation/MavenPublicationErrorChecker.java

         * @param componentName name of the component
         * @param source original artifact
         * @param mainArtifacts set of published artifacts to verify
         * @throws PublishException if the artifacts are modified
         */
        public static void checkThatArtifactIsPublishedUnmodified(
            String projectDisplayName, Path buildDir, String componentName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        public static <T> T getComponent(final String componentName) {
            try {
                return SingletonLaContainer.getComponent(componentName);
            } catch (final NullPointerException e) {
                if (logger.isDebugEnabled()) {
                    throw new ContainerNotAvailableException(componentName, e);
                }
                throw new ContainerNotAvailableException(componentName);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/main/java/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponent.java

        private final RoleBasedConfigurationContainerInternal configurations;
    
        @Inject
        public DefaultJvmSoftwareComponent(
            String componentName,
            ObjectFactory objectFactory,
            RoleBasedConfigurationContainerInternal configurations
        ) {
            super(componentName, objectFactory);
            this.configurations = configurations;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top