Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,337 for componentX (0.14 sec)

  1. operator/pkg/name/name.go

    	ValuesEnablementPathMap = map[string]string{
    		"spec.values.gateways.istio-ingressgateway.enabled": "spec.components.ingressGateways.[name:istio-ingressgateway].enabled",
    		"spec.values.gateways.istio-egressgateway.enabled":  "spec.components.egressGateways.[name:istio-egressgateway].enabled",
    	}
    
    	// userFacingComponentNames are the names of components that are displayed to the user in high level CLIs
    	// (like progress log).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. operator/pkg/util/progress/progress.go

    func (p *Log) reportProgress(component string) func() {
    	return func() {
    		cmpName := name.ComponentName(component)
    		cliName := name.UserFacingComponentName(cmpName)
    		p.mu.Lock()
    		defer p.mu.Unlock()
    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    		cmp.mu.Unlock()
    		successIcon := "✅"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    /**
     * A **platform component** as defined by the Platform Interface (see the README).
     *
     * Mandatory platform components must be implemented by a platform to fully support the Analysis API in the desired environment. A few
     * platform components are optional, signified by [KotlinOptionalPlatformComponent]. As a marker interface, [KotlinPlatformComponent]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

       </configuration>
       <components>
          <component group="org" name="foo" version="1.0">
             <artifact name="foo-1.0.jar">
                <sha1 value="abc">
                   <also-trust value="def"/>
                   <also-trust value="123"/>
                </sha1>
             </artifact>
          </component>
       </components>
    </verification-metadata>
    """
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      TF_DataType dtype = TFE_TensorHandleDataType(components[0].get());
      // Verify that the TensorHandle's shape and dtype match all of the component
      // shapes and dtypes.
      for (TensorHandlePtr& component : components) {
        TFE_TensorHandleGetStatus(component.get(), status);
        if (!status->status.ok()) {
          return nullptr;
        }
        if (TFE_TensorHandleDataType(component.get()) != dtype) {
          TF_SetStatus(status, TF_INTERNAL,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/query/DefaultArtifactResolutionQueryTest.groovy

    import org.gradle.api.internal.component.ComponentTypeRegistration
    import org.gradle.api.internal.component.ComponentTypeRegistry
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    import org.gradle.internal.component.model.ComponentArtifactResolveState
    import org.gradle.internal.component.model.ComponentGraphResolveMetadata
    import org.gradle.internal.component.model.ComponentGraphResolveState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 19:46:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When you _build_ dependents of a component, the component and all of its dependent binaries are compiled, linked _and checked_. Checking components means running any <<#sec:check_tasks,check task>> including executing any test suites, so tests _are_ run when building a component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

    import org.gradle.internal.component.model.ComponentGraphSpecificResolveState
    import org.gradle.internal.component.model.ComponentIdGenerator
    import org.gradle.internal.component.model.ComponentOverrideMetadata
    import org.gradle.internal.component.model.DependencyMetadata
    import org.gradle.internal.component.model.ExcludeMetadata
    import org.gradle.internal.component.model.GraphVariantSelector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                }
    
                T coordinates = componentCoordinates.get(component);
                if (!coordinatesSeen.add(coordinates)) {
                    throw new InvalidUserDataException("Multiple child components may not share the same coordinates: " + coordinates);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. manifests/charts/README.md

    Note: there are still some cluster roles that may need to be fixed, most likely cluster permissions
    will need to move to the security component.
    
    ## Everything is Optional
    
    Each component in the new installer is optional. Users can install the component defined in the new installer,
    use the equivalent component in `istio-system`, configured with the official installer, or use a different
    version or implementation.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top