Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 127 for Constraint (0.13 sec)

  1. subprojects/distributions-dependencies/build.gradle.kts

    val jettyVersion = "9.4.36.v20210114"
    val sshdVersion = "2.12.1"
    
    // For the junit-bom
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform("org.junit:junit-bom:${junit5Version}!!"))
    
        constraints {
            api(libs.ansiControlSequenceUtil) { version { strictly("0.3") }}
            api(libs.ant)                   { version { strictly(antVersion) }}
            api(libs.antLauncher)           { version { strictly(antVersion) }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

          else
            llvm::errs() << "_";
          llvm::errs() << ",";
        }
        llvm::errs() << ")\n";
      });
    }
    
    // A heuristic to get quantization parameters satisfies the same scale
    // constraints:
    // - If there are immutable states,
    //   - use the single input, or,
    //   - use the single output, or,
    //   - use the first one in the collection,
    // - use the single input if it is ready, or,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/qos_container_manager_linux.go

    	v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	// how often the qos cgroup manager will perform periodic update
    	// of the qos level cgroup resource constraints
    	periodicQOSCgroupUpdateInterval = 1 * time.Minute
    )
    
    type QOSContainerManager interface {
    	Start(func() v1.ResourceList, ActivePodsFunc) error
    	GetQOSContainersInfo() QOSContainersInfo
    	UpdateCgroups() error
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/server.go

    		Use: "kube-scheduler",
    		Long: `The Kubernetes scheduler is a control plane process which assigns
    Pods to Nodes. The scheduler determines which Nodes are valid placements for
    each Pod in the scheduling queue according to constraints and available
    resources. The scheduler then ranks each valid Node and binds the Pod to a
    suitable Node. Multiple different schedulers may be used within a cluster;
    kube-scheduler is the reference implementation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    However, the DSL requires that plugins be defined statically.
    
    There are some key differences between the `plugins {}` block mechanism and the "traditional" `apply()` method mechanism.
    There are also some constraints and possible limitations.
    
    [[sec:constrained_syntax]]
    ==== Constrained Syntax
    
    The `plugins {}` block does not support arbitrary code.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    // successors for ops of the given function. This information is computed from
    // side effects, using resource alias analysis where possible.
    // Remarks:
    // - Control dependencies model execution order constraints for side-effecting
    //   ops. For example, two ops writing to the same resource cannot switch their
    //   order and cannot be executed in parallel.
    // - A control dependency (A,B) means that op A has to be executed before op B.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            val extensionReceiverType = symbol.receiverParameter?.type ?: return false
            return isPossiblySuperTypeOf(extensionReceiverType, actualReceiverType)
        }
    
        /**
         * Same constraints as in [canBeReferencedAsExtensionOn].
         *
         * For a similar function in the `intellij` repository, see `isPossiblySubTypeOf`.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	// request, hand-crafted type
    	declTypes = append(declTypes, requestType)
    	varOpts = append(varOpts, createVariableOpts(requestType, plugincel.RequestVarName)...)
    
    	// object and oldObject, same type, type(s) resolved from constraints
    	declTypes = append(declTypes, types.object)
    	varOpts = append(varOpts, createVariableOpts(types.object, plugincel.ObjectVarName, plugincel.OldObjectVarName)...)
    
    	// params, defined by ParamKind
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        OptionalAttr<DictArrayAttr>:$res_attrs
      );
    
      let results = (outs);
    
      // When the regions is empty, the tfr.func is an external function and used
      // to model the element type constraints of the tf op. Otherwise, there is one
      // region containing the composition.
      let regions = (region VariadicRegion<AnyRegion>:$body);
    
      let skipDefaultBuilders = 1;
    
      let builders = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	}
    
    	allErrs := field.ErrorList{}
    
    	// We still unconditionally forbid XValidations in quantifiers, the only
    	// quantifier that is allowed to have right now is AllOf. This is due to
    	// implementation constraints - the SchemaValidator would need to become
    	// aware of CEL to properly implement the other quantifiers.
    	optsWithCELDisabled := opts
    	optsWithCELDisabled.AllowNestedXValidations = false
    
    	if !skipAnyOf {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top