Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 856 for componentId (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolveConfigurationResolutionBuildOperationResult.java

            final Map<String, Map<String, String>> components = new HashMap<>();
            eachElement(rootSource.get(), component -> components.put(
                component.getId().getDisplayName(),
                Collections.singletonMap("repoId", getRepositoryId(component))
            ), Actions.doNothing(), new HashSet<>());
            model.put("components", components);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

     * limitations under the License.
     */
    
    package org.gradle.internal.component.model;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.api.internal.component.ArtifactType;
    import org.gradle.internal.resolve.resolver.ArtifactResolver;
    import org.gradle.internal.resolve.result.BuildableArtifactSetResolveResult;
    
    /**
     * State for a component instance that is used to perform artifact resolution.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

    }
    
    absl::StatusOr<ModuleOp> StaticRangePtqComponent::Run(
        ModuleOp module_op, const QuantizationConfig& config) {
      // Runs sub-components in sequence: PreCalibrationComponent ->
      // CalibrationComponent -> PostCalibrationComponents.
      for (std::unique_ptr<Component>& sub_component : sub_components_) {
        TF_ASSIGN_OR_RETURN(module_op, sub_component->Run(module_op, config));
      }
    
      return module_op;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ConfigurationMetadata.java

        /**
         * Find the component artifact with the given IvyArtifactName, creating a new one if none matches.
         *
         * This is used to create a ComponentArtifactMetadata from an artifact declared as part of a dependency.
         * The reason to do this lookup is that for a local component artifact, the file is part of the artifact metadata.
         * (For external module components, we just instantiate a new artifact metadata).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/strconv/atoc.go

    // for a floating-point number as recognized by [ParseFloat], and i is the imaginary
    // component. If the second N is unsigned, a + sign is required between the two components
    // as indicated by the ±. If the second N is NaN, only a + sign is accepted.
    // The form may be parenthesized and cannot contain any spaces.
    // The resulting complex number consists of the two components converted by ParseFloat.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/networking.go

    limitations under the License.
    */
    
    // Package app implements a server that runs a set of active
    // components.  This includes replication controllers, service endpoints and
    // nodes.
    package app
    
    import (
    	"context"
    
    	"k8s.io/component-base/featuregate"
    	"k8s.io/controller-manager/controller"
    	"k8s.io/kubernetes/cmd/kube-controller-manager/names"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/GradleDependencyMetadata.java

    import org.gradle.internal.component.local.model.DefaultProjectDependencyMetadata;
    import org.gradle.internal.component.model.ComponentGraphResolveState;
    import org.gradle.internal.component.model.DependencyMetadata;
    import org.gradle.internal.component.model.ExcludeMetadata;
    import org.gradle.internal.component.model.ForcingDependencyMetadata;
    import org.gradle.internal.component.model.GraphVariantSelectionResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     * This is only necessary for default components using @Typed that want to support overriding.
     *
     * As a non-default component this now gets a negative priority relative to other implementations
     * of the same interface. Since we want to allow overriding this doesn't matter in this case.
     * (if it did we could add @Priority of 0 to match the priority given to default components.)
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/types.go

    	// the CurrentVersion of the config is user supplied (or modified) and no longer supported. Users should upgrade
    	// their component configs to PreferredVersion or any other supported component config version.
    	ManualUpgradeRequired bool
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	}
    
    	for _, component := range kubeadmconstants.ControlPlaneComponents {
    		fmt.Printf("[control-plane] Creating static Pod manifest for %q\n", component)
    		err := controlplane.CreateStaticPodFiles(
    			data.ManifestDir(),
    			data.PatchesDir(),
    			&cfg.ClusterConfiguration,
    			&cfg.LocalAPIEndpoint,
    			data.DryRun(),
    			component,
    		)
    		if err != nil {
    			return err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top