Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for Cases (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // invariant that pointers must stay within the pointed-to object,
    // we can't pull part of a pointer computation above the AddPtr.
    // See issue 37881.
    // Note: we don't need to handle any (x-C) cases because we already rewrite
    // (x-C) to (x+(-C)).
    
    // x + (C + z) -> C + (x + z)
    (Add64 (Add64 i:(Const64 <t>) z) x) && (z.Op != OpConst64 && x.Op != OpConst64) => (Add64 i (Add64 <t> z x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Note that these operations don't exactly match the semantics of Go's
    		// builtin min. In particular, these aren't commutative, because on various
    		// special cases the 2nd argument is preferred.
    		{name: "MINSD", argLength: 2, reg: fp21, resultInArg0: true, asm: "MINSD"}, // min(arg0,arg1)
    		{name: "MINSS", argLength: 2, reg: fp21, resultInArg0: true, asm: "MINSS"}, // min(arg0,arg1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

              "ConvBackpropInputOp");
        }
    
        // tf.ResizeBilinearOp is perferred than tf.Conv2DBackpropInputOp since
        // the former has better portability, especially in inference use cases.
        bool align_corners;
        llvm::SmallVector<int, 2> output_sizes;
        if (MatchToResizeBilinearOp(conv_op, align_corners, output_sizes, rewriter)
                .succeeded()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //===----------------------------------------------------------------------===//
    // CollectiveReduceV2Op
    //===----------------------------------------------------------------------===//
    
    // For `CollectiveReduceV2Op` we have 3 cases:
    // 1) `is_stateless` is true turns off automatic ordering and we purely rely on
    //    instance_key to distinguish collective groups. In this case, ordering
    //    tokens are irrelevant. Each collective group should have a unique
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // either case but upper-case letters match exactly. This means that there may be
    // multiple matches of a lower-case argument in a package if different symbols have
    // different cases. If this occurs, documentation for all matches is printed.
    //
    // Examples:
    //
    //	go doc
    //		Show documentation for current package.
    //	go doc Foo
    //		Show documentation for Foo in the current package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // returns true on success, or false if there is no next result row or an error
    // happened while preparing it. [Rows.Err] should be consulted to distinguish between
    // the two cases.
    //
    // Every call to [Rows.Scan], even the first one, must be preceded by a call to [Rows.Next].
    func (rs *Rows) Next() bool {
    	// If the user's calling Next, they're done with their previous row's Scan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    	selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    	if err != nil {
    		return err
    	}
    
    	// Give up after 2 loops.
    	// 2 * 500 pods per loop = 1000 max pods <- this should be enough for all test cases.
    	// Anything slower than that (requiring more iterations) indicates a problem and should fail the test.
    	maxLoops := 2
    	loops := maxLoops
    	for set.Status.Replicas < *set.Spec.Replicas {
    		if loops < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    	/* pre/post-indexed/signed-offset load/store register pair
    	   (unscaled, signed 10-bit quad-aligned and long offset).
    	The pre/post-indexed format only supports OREG cases because
    	the RSP and pseudo registers are not allowed to be modified
    	in this way. */
    	{AFLDPQ, C_NQAUTO_16, C_NONE, C_NONE, C_PAIR, C_NONE, 66, 4, REGSP, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    // for forbidden states and opts out of the yield in those cases.
    //
    //go:nosplit
    func goschedguarded() {
    	mcall(goschedguarded_m)
    }
    
    // goschedIfBusy yields the processor like gosched, but only does so if
    // there are no idle Ps or if we're on the only P and there's nothing in
    // the run queue. In both cases, there is freely available idle time.
    //
    //go:nosplit
    func goschedIfBusy() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ObjectReference"
                  }
                ],
                "default": {},
                "description": "regarding contains the object this Event is about. In most cases it's an Object reporting controller implements, e.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object."
              },
              "related": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
Back to top