Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,345 for componentX (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

        std::array<TensorHandlePtr, 2> components;
        ExtractPerDeviceValues(context, read.get(), &components, status.get());
        ASSERT_TRUE(TF_GetCode(status.get()) == TF_OK) << TF_Message(status.get());
    
        ExpectScalarEq<float>(components[0].get(), 20.);
        ExpectScalarEq<float>(components[1].get(), 20.);
    
        std::string first_device =
            TFE_TensorHandleBackingDeviceName(components[0].get(), status.get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 15:44:44 UTC 2021
    - 12.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadata.java

    import org.gradle.internal.component.external.model.VariantDerivationStrategy;
    import org.gradle.internal.component.external.model.VariantMetadataRules;
    import org.gradle.internal.component.model.ConfigurationMetadata;
    import org.gradle.internal.component.model.DefaultIvyArtifactName;
    import org.gradle.internal.component.model.DependencyMetadata;
    import org.gradle.internal.component.model.ModuleConfigurationMetadata;
    import org.gradle.internal.component.model.ModuleSources;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

        def "can configure via testSuite component"() {
            given:
            useConventionalSourceLocations()
    
            buildFile << """
    model {
        components {
            hello(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
        testSuites {
            helloTest(GoogleTestTestSuiteSpec) {
                testing \$.components.hello
                binaries.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top