Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,275 for componentX (0.13 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. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

            when:
            component1.add("c")
            component1.add("l")
            component2.add("d")
            component2.add("m")
    
            then:
            filtered.toList() == ["j", "l", "k", "m"]
    
            when:
            component1.remove("c")
            component1.remove("l")
            component2.remove("d")
            component2.remove("m")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/ComponentReportRendererTest.groovy

            }
            def component2 = Stub(ComponentSpec) {
                getDisplayName() >> "<component 2>"
            }
    
            when:
            renderer.startProject(project)
            renderer.renderComponents([component1, component2])
            renderer.completeProject(project)
            renderer.complete()
    
            then:
            output.value.contains("""
    {header}<component 1>
    """)
            output.value.contains("""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/test/framework/integration/component.go

    package integration
    
    import (
    	"io"
    
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var _ io.Closer = &component{}
    
    type component struct {
    	name        string
    	id          resource.ID
    	handleClose func(*component)
    }
    
    func (c *component) ID() resource.ID {
    	return c.id
    }
    
    func (c *component) Close() error {
    	if c.handleClose != nil {
    		c.handleClose(c)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/component/Component.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.component;
    
    /**
     * A software component that can be queried via the Artifact Query API.
     *
     * @since 2.0
     */
    public interface Component {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 779 bytes
    - Viewed (0)
Back to top