Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,361 for componentId (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    For more details, see the section on <<component_capabilities.adoc#declaring-component-capabilities,capabilities>>.
    
    [[sub:terminology_component]]
    == Component
    
    Any single version of a <<dependency_management_terminology.adoc#sub:terminology_module,module>>.
    
    For external libraries, the term component refers to one published version of the library.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

                    implementation 'org:bar:1.0'
                }
                components.java.withVariantsFromConfiguration(configurations.runtimeElements) {
                    skip()
                }
                publishing {
                    publications {
                        maven(MavenPublication) {
                            from components.java
                        }
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom

        <artifactId>plexus-containers</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0-alpha-16</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>plexus-component-api</artifactId>
      <name>Plexus Component API</name>
      <version>1.0-alpha-16</version>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.2</version>
            <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/component-model.odg

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/query/ArtifactResolutionQuery.java

        /**
         * Specifies the set of components to include in the result.
         *
         * @param componentIds The identifiers of the components to be queried.
         */
        ArtifactResolutionQuery forComponents(ComponentIdentifier... componentIds);
    
        /**
         * Specifies a module component to include in the result using its GAV coordinates.
         *
    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. 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)
  10. 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)
Back to top