Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 398 for reactors (0.22 sec)

  1. pkg/registry/authorization/rest/storage_authorization.go

    	// If you add a version here, be sure to add an entry in `k8s.io/kubernetes/cmd/kube-apiserver/app/aggregator.go with specific priorities.
    	// TODO refactor the plumbing to provide the information in the APIGroupInfo
    
    	if storageMap := p.v1Storage(apiResourceConfigSource, restOptionsGetter); len(storageMap) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. pkg/registry/autoscaling/rest/storage_autoscaling.go

    	// If you add a version here, be sure to add an entry in `k8s.io/kubernetes/cmd/kube-apiserver/app/aggregator.go with specific priorities.
    	// TODO refactor the plumbing to provide the information in the APIGroupInfo
    
    	if storageMap, err := p.v2Storage(apiResourceConfigSource, restOptionsGetter); err != nil {
    		return genericapiserver.APIGroupInfo{}, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 29 08:51:48 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                Map<String, Artifact> map = new HashMap<>();
                for (Artifact artifact : resolvedArtifacts) {
                    /**
                     * MNG-6300: resolvedArtifacts can be cache result; this ensures reactor files are always up-to-date
                     * During lifecycle the Artifact.getFile() can change from target/classes to the actual jar.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/model/ModelReport.java

    public abstract class ModelReport extends DefaultTask {
    
        /**
         * The report format.
         * <ul>
         *     <li><i>full</i> (default value) will show details about types, rules and creators</li>
         *     <li><i>short</i> will only show nodes and their values</li>
         * </ul>
         */
        public enum Format {
            FULL,
            SHORT
        }
    
        private boolean showHidden;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. src/math/big/ratconv.go

    	d := x.Denom().abs // d >= 1
    
    	// Determine p2 by counting factors of 2.
    	// p2 corresponds to the trailing zero bits in d.
    	// Do this first to reduce q as much as possible.
    	var q nat
    	p2 := d.trailingZeroBits()
    	q = q.shr(d, p2)
    
    	// Determine p5 by counting factors of 5.
    	// Build a table starting with an initial power of 5,
    	// and use repeated squaring until the factor doesn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

         */
        private String lifecyclePhase;
    
        /**
         * The executions to fork before this execution, indexed by the groupId:artifactId:version of the project on which
         * the forked execution are to be run and in reactor build order.
         */
        private Map<String, List<MojoExecution>> forkedExecutions = new LinkedHashMap<>();
    
        public MojoExecution(Plugin plugin, String goal, String executionId) {
            this.plugin = plugin;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

                    FileModelSource source = getSource(groupId, artifactId);
                    if (source == null) {
                        // we need to check the whole reactor in case it's a dependency
                        loadFullReactor();
                        source = getSource(groupId, artifactId);
                    }
                    if (source != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/order_by_dialect.cc

    // Reorder operations so that consecutive ops stay in the same dialect, as far
    // as possible. This is to optimize the op order for the group-by-dialect pass,
    // which factors consecutive same-dialect ops into functions.
    class OrderByDialectPass
        : public impl::OrderByDialectPassBase<OrderByDialectPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(OrderByDialectPass)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_dynamic_range.cc

        if (!(quantizeOps(rewriter, op, quantizable_ops))) {
          return failure();
        }
    
        // 3. Apply post-processing required for each inference type.
        // TODO(b/212514817): refactor mode checking to improve code quality
        if (quant_specs_.inference_type == tensorflow::DT_QINT8 &&
            (setAsymmetricQuantizeInputAttr(rewriter, quantizable_ops))) {
          return failure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/interface.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/client-go/tools/cache"
    )
    
    type Controller[T runtime.Object] interface {
    	// Meant to be run inside a goroutine
    	// Waits for and reacts to changes in whatever type the controller
    	// is concerned with.
    	//
    	// Returns an error always non-nil explaining why the worker stopped
    	Run(ctx context.Context) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top