Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,163 for componentX (0.29 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    func (v *Version) compareInternal(other *Version) int {
    
    	vLen := len(v.components)
    	oLen := len(other.components)
    	for i := 0; i < vLen && i < oLen; i++ {
    		switch {
    		case other.components[i] < v.components[i]:
    			return 1
    		case other.components[i] > v.components[i]:
    			return -1
    		}
    	}
    
    	// If components are common but one has more items and they are not zeros, it is bigger
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         * @since 1.8
         */
        void components(Action<? super ComponentMetadataHandler> configureAction);
    
        /**
         * Returns the component module metadata handler for this project. The returned handler can be used for adding rules
         * that modify the metadata of depended-on software components.
         *
         * @return the component module metadata handler for this project
         * @since 2.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/prune.go

    	var errs util.Errors
    	// Ultimately, we want to prune based on component labels. Each of these share a common set of labels
    	// Rather than do N List() calls for each component, we will just filter for the common subset here
    	// and each component will do its own filtering
    	// Because we are filtering by the core labels, List() will only return items that some components will care
    	// about, so we are not querying for an overly broad set of resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/image/jpeg/reader.go

    			// 4:1:1 or 4:1:0 chroma subsampling ratios. This implies that the
    			// (h, v) values for the Y component are either (1, 1), (1, 2),
    			// (2, 1), (2, 2), (4, 1) or (4, 2), and the Y component's values
    			// must be a multiple of the Cb and Cr component's values. We also
    			// assume that the two chroma components have the same subsampling
    			// ratio.
    			switch i {
    			case 0: // Y.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                        maven(MavenPublication) {
                            from components.java
                        }
                    }
                }
    
    
                ${features().collect { """
                    components.java.withVariantsFromConfiguration(configurations.${MavenJavaModule.variantName(it, 'apiElements')}) { skip() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    	}
    }
    
    // overallStatus returns the summary status over all components.
    // - If all components are HEALTHY, overall status is HEALTHY.
    // - If one or more components are RECONCILING and others are HEALTHY, overall status is RECONCILING.
    // - If one or more components are UPDATING and others are HEALTHY, overall status is UPDATING.
    // - If components are a mix of RECONCILING, UPDATING and HEALTHY, overall status is UPDATING.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishExternalVariantIntegrationTest.groovy

                            }
                        }
                    }
                """
            }
    
            def component = "${name}ChildComponent"
            output += """
                def ${component} = componentFactory.adhoc("${component}")
                ${component}.addVariantsFromConfiguration(configurations."${publicationConf}") {
                    mapToMavenScope('runtime')
                    dependencyMapping {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

    class ExtraComp implements org.gradle.api.internal.component.SoftwareComponentInternal, ComponentWithVariants {
        String name = 'extra'
        Set usages = []
        Set variants = []
    }
    
    project(":project3") {
        def c1 = new ExtraComp(variants: [components.java])
        def c2 = new ExtraComp(variants: [c1, components.java])
        publishing {
            publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadata.java

    import org.gradle.internal.component.external.model.VariantDerivationStrategy;
    import org.gradle.internal.component.external.model.VariantMetadataRules;
    import org.gradle.internal.component.model.DependencyMetadata;
    import org.gradle.internal.component.model.Exclude;
    import org.gradle.internal.component.model.ExcludeMetadata;
    import org.gradle.internal.component.model.ModuleConfigurationMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top