Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,728 for componentX (0.52 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSymbol.kt

        FirDeclarationOrigin.Source -> {
            when (source?.kind) {
                KtFakeSourceElementKind.ImplicitConstructor,
                KtFakeSourceElementKind.DataClassGeneratedMembers, /* Valid for copy() / componentX(), should we change it? */
                KtFakeSourceElementKind.EnumGeneratedDeclaration,
                KtFakeSourceElementKind.ItLambdaParameter -> KaSymbolOrigin.SOURCE_MEMBER_GENERATED
    
                else -> KaSymbolOrigin.SOURCE
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. operator/pkg/component/component.go

    	// ResourceName returns the name of the resources of the component.
    	ResourceName() string
    	// Namespace returns the namespace for the component.
    	Namespace() string
    	// Enabled reports whether the component is enabled.
    	Enabled() bool
    	// Run starts the component. Must be called before the component is used.
    	Run() error
    	// RenderManifest returns a string with the rendered manifest for the component.
    	RenderManifest() (string, error)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. pkg/kube/multicluster/component.go

    	Close()
    	HasSynced() bool
    }
    
    type Component[T ComponentConstraint] struct {
    	mu          sync.RWMutex
    	constructor func(cluster *Cluster) T
    	clusters    map[cluster.ID]T
    }
    
    func (m *Component[T]) ForCluster(clusterID cluster.ID) *T {
    	m.mu.RLock()
    	defer m.mu.RUnlock()
    	t, f := m.clusters[clusterID]
    	if !f {
    		return nil
    	}
    	return &t
    }
    
    func (m *Component[T]) All() []T {
    	m.mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/component.xml

    specific language governing permissions and limitations
    under the License.
    -->
    <component xmlns="http://maven.apache.org/ASSEMBLY-COMPONENT/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/ASSEMBLY-COMPONENT/2.1.0 http://maven.apache.org/xsd/assembly-component-2.1.0.xsd">
      <dependencySets>
        <dependencySet>
          <useProjectArtifact>false</useProjectArtifact>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jun 04 19:03:41 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

        def "resolve fails when target project has multiple component publications with different coordinates"() {
            given:
            def component1 = Stub(SoftwareComponentInternal)
            def component2 = Stub(SoftwareComponentInternal)
            def component3 = Stub(TestComponent)
    
            when:
            def publication = pub('mock', "pub-group", "pub-name", "pub-version", component1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/component.h

    namespace mlir::quant::stablehlo {
    
    // Component is a public abstraction for StableHLO Quantizer that represents the
    // most basic unit of action applied to the StableHLO graph. Derived classes
    // should override the `Run` method to implement the action.
    class Component {
     public:
      virtual ~Component() = default;
    
      // Runs the action to the StableHLO graph, passed by the `module_op`. `config`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 13 03:14:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-monolithic/components.gradle

    model {
        components {
            "\$project.name"(NativeLibrarySpec) {
                sources {
                    cpp_srcs(CppSourceSet) {
                        source {
                            srcDirs "\$rootDir/modules/\${project.name}"
                            <% includedSourceCount.times { %>
                            include "src/src${it}_cpp.cpp"
                            <% } %>
                        }
                        exportedHeaders {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    // after the calibration step, corresponding to each `TF::CustomAggregatorOp`s
    // in the input module op.
    //
    // TODO: b/320607042 - Add tests for this component on the python layer.
    class CalibrationComponent : public Component {
     public:
      // Name of the post-training quantization post-calibration step. Used for
      // debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_calibration";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/customModel/languageType/tests/softwareModelExtend-components.out

        Text source 'docs:reference'
            srcDir: src/docs/reference
    
    Binaries
        DocumentationBinary 'docs:exploded'
            build using task: :docsExploded
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h"
    
    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/nullability.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top