Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,073 for 2_spec (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                dependencyResolutionManagement {
                    ${mavenCentralRepository()}
                    components {
                        withModule("org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec") {
                            allVariants {
                                withCapabilities {
                                    addCapability("javax.transaction", "javax.transaction-api", id.version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/device_target.cc

      auto o_spec = out_specs[0].dyn_cast<UniformQuantizedType>();
      if (!in_spec || !w_spec || !b_spec || !o_spec) return failure();
    
      double scale_product = in_spec.getScale() * w_spec.getScale();
      if (fabs(scale_product - b_spec.getScale()) >= 1e-6) return failure();
    
      // input multipliers
      input_multipliers->append(3, kUnitQuantizedMultiplier);
    
      // output multipliers
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/api/specs/OrSpec.java

     * true. Uses lazy evaluation.
     *
     * @param <T> The target type for this Spec
     */
    public class OrSpec<T> extends CompositeSpec<T> {
        public static final OrSpec<?> EMPTY = new OrSpec<Object>();
    
        public OrSpec() {
            super();
        }
    
        public OrSpec(Spec<? super T>... specs) {
            super(specs);
        }
    
        public OrSpec(Iterable<? extends Spec<? super T>> specs) {
            super(specs);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/model/op_spec.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    // An Op.
    //
    // Essentially, this represents an OpDef and any necessary context (e.g ApiDef).
    class OpSpec {
     public:
      static OpSpec Create(const OpDef& op_def, const ApiDef& api_def);
    
      const string& name() const { return name_; }
      const string& summary() const { return summary_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/format/formatting.go

    	return buf.String()
    }
    
    // BufferFlowSchemaSpec writes a golang source expression for the
    // given value to the given buffer
    func BufferFlowSchemaSpec(buf *bytes.Buffer, fsSpec *flowcontrol.FlowSchemaSpec) {
    	buf.WriteString(fmt.Sprintf("flowcontrolv1.FlowSchemaSpec{PriorityLevelConfiguration: %#+v, MatchingPrecedence: %d, DistinguisherMethod: ",
    		fsSpec.PriorityLevelConfiguration,
    		fsSpec.MatchingPrecedence))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/model/op_spec.cc

    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    
    #include <string>
    
    #include "absl/container/flat_hash_set.h"
    
    namespace tensorflow {
    namespace generator {
    
    OpSpec OpSpec::Create(const OpDef& op_def, const ApiDef& api_def) {
      return OpSpec(op_def, api_def);
    }
    
    OpSpec::OpSpec(const OpDef& op_def, const ApiDef& api_def)
        : name_(op_def.name()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 01 21:05:56 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/controller.cc

    #include "absl/strings/substitute.h"
    #include "tensorflow/c/experimental/ops/gen/common/path_config.h"
    #include "tensorflow/c/experimental/ops/gen/common/source_code.h"
    #include "tensorflow/c/experimental/ops/gen/model/op_spec.h"
    #include "tensorflow/core/framework/api_def.pb.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_gen_lib.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate_value.go

    		if err != nil {
    			return err
    		}
    		if !pathExist && !enabled {
    			continue
    		}
    		gwSpecs := make([]map[string]any, 1)
    		gwSpec := make(map[string]any)
    		gwSpecs[0] = gwSpec
    		gwSpec["enabled"] = enabled
    		gwSpec["name"] = util.ToYAMLPath(inPath)[1]
    		outCP := util.ToYAMLPath("Components." + string(outPath))
    
    		if enabled {
    			mapping := t.GatewayKubernetesMapping.IngressMapping
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    <!--{
    	"Title": "The Go Programming Language Specification",
    	"Subtitle": "Language version go1.23 (June 4, 2024)",
    	"Path": "/ref/spec"
    }-->
    
    <h2 id="Introduction">Introduction</h2>
    
    <p>
    This is the reference manual for the Go programming language.
    The pre-Go1.18 version, without generics, can be found
    <a href="/doc/go1.17_spec.html">here</a>.
    For more information and other documents, see <a href="/">go.dev</a>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    				"apps/v1": fieldpath.MakePathOrDie("spec", "the-replicas"),
    				"apps/v2": fieldpath.MakePathOrDie("spec", "not-the-replicas"),
    			},
    			parent: []metav1.ManagedFieldsEntry{
    				{
    					Manager:    "test",
    					Operation:  metav1.ManagedFieldsOperationApply,
    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:the-replicas":{},"f:selector":{}}}`)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top