Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,275 for componentX (0.12 sec)

  1. 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)
  2. src/main/resources/esflute_log.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<include path="esclient.xml"/>
    
    	<!-- The components of DBFlute Runtime. -->
    	<component name="invokerAssistant" class="org.codelibs.fess.es.common.ImplementedInvokerAssistant"/>
    	<component name="behaviorCommandInvoker" class="org.dbflute.bhv.core.BehaviorCommandInvoker"/>
    
    	<!-- The components of Behavior. -->
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 13 05:17:34 UTC 2017
    - 829 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. src/main/resources/fess_dict.xml

    	</component>
    	<component name="stemmerOverrideCreator"
    		class="org.codelibs.fess.dict.stemmeroverride.StemmerOverrideCreator">
    	</component>
    	<component name="protwordsCreator"
    		class="org.codelibs.fess.dict.protwords.ProtwordsCreator">
    	</component>
    	<component name="stopwordsCreator"
    		class="org.codelibs.fess.dict.stopwords.StopwordsCreator">
    	</component>
    	<component name="charMappingCreator"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 28 02:34:33 UTC 2018
    - 990 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top