Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,925 for componentX (0.16 sec)

  1. cmd/kubeadm/app/util/apiclient/wait.go

    	}
    	return errors.Wrapf(err, "static Pod hash for component %s on Node %s did not change after %v", component, nodeName, w.timeout)
    }
    
    // getStaticPodSingleHash computes hashes for a single Static Pod resource
    func getStaticPodSingleHash(client clientset.Interface, nodeName string, component string) (string, error) {
    
    	staticPodName := fmt.Sprintf("%s-%s", component, nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponentIntegrationTest.groovy

                    comp(JvmSoftwareComponentInternal)
                }
    
                task verify {
                    assert components.java instanceof DefaultJvmSoftwareComponent
                    assert components.comp instanceof DefaultJvmSoftwareComponent
                }
            """
    
            expect:
            succeeds "verify"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

         * @return The component.
         * @param <T> The component type.
         * @throws LookupException if no such component or there is some provisioning related issue.
         */
        @Nonnull
        <T> T lookup(Class<T> type, String name);
    
        /**
         * Performs a lookup for optional typed component.
         *
         * @param type The component type.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/upgrade/plan.go

    	}
    	_ = tabw.Flush()
    
    	_, _ = printer.Fprintln(writer, "")
    	_, _ = printer.Fprintf(writer, "Upgrade to the latest %s:\n", au.Description)
    	_, _ = printer.Fprintln(writer, "")
    	_, _ = printer.Fprintln(tabw, strings.Join([]string{"COMPONENT", "NODE", "CURRENT", "TARGET"}, "\t"))
    	for _, component := range au.Components {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate.go

    	ManifestsPath string
    	// Revision is the Istio control plane revision the command targets.
    	Revision string
    	// Components is a list of strings specifying which component's manifests to be generated.
    	Components []string
    	// Filter is the list of components to render
    	Filter []string
    }
    
    var kubeClientFunc func() (kube.CLIClient, error)
    
    func (a *ManifestGenerateArgs) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

    // will raise an error.
    // NEXT ID: 2
    message CustomQuantizationMethod {
      // Specify component name, bit width, and other specs for all compoenents
      // intended to be quantized.
      repeated QuantizationComponentSpec quantization_component_spec = 1;
    }
    
    // Quantization spec per each component designated to be quantized.
    // Components whose QuantizationComponentSpec is not specified will not be
    // quantized, and remain f32.
    // NEXT ID: 7
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

        }
    
        @Defaults
        void verifyAsModelMap(@Path("components") ModelMap<ComponentSpec> c) {
            assert c.toString() == "ComponentSpecContainer 'components'"
            assert c.withType(CustomComponent).toString() == "ComponentSpecContainer 'components'"
            assert !(c instanceof ComponentSpecContainer)
        }
    
        @Defaults
        void verifyAsSpecializedModelMap(@Path("components") ModelMap<CustomComponent> c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/query/ArtifactResolutionQuery.java

        /**
         * Defines the type of component that is expected in the result, and the artifacts to retrieve for components of this type.
         *
         * Presently, only a single component type and set of artifacts is permitted.
         *
         * @param componentType The expected type of the component.
         * @param artifactTypes The artifacts to retrieve for the queried components.
         */
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 25 01:46:47 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

            components.withType(ComponentWithBinaries.class, component -> {
                // Register each child of each component
                component.getBinaries().whenElementKnown(binary -> components.add(binary));
    
                if (component instanceof ProductionComponent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

                        components.all { component ->
                            component.unmanagedData = "unmanaged"
                        }
                    }
    
                    @Mutate
                    void mutateManaged(ModelMap<ManagedComponentSpec> components) {
                        components.all { component ->
                            component.managedData = "managed"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
Back to top