Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 232 for wbMove (0.21 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

    // backedge predicate.  This is conservatively correct.
    
    namespace tensorflow {
    
    namespace {
    
    using tsl::StatusOr;
    
    // Represents a logical predicate, used as described in the algorithm overview
    // above.
    class Predicate {
     public:
      enum class Kind { kAnd, kOr, kNot, kAndRecurrence, kSymbol, kIntSymbol };
    
      virtual string ToString() const = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      }
    
      // While the last several tensors could be optional tensors for an tfl op, the
      // number of input operands could vary. Gets the min/max number of
      // operands from tflite op name.
      // Also, since the above code special-handles the `tfl.reshape` op and add an
      // additional input, we put these function block here.
      llvm::MinMax input_min_max = mlir::OperandNumbersMinMax(op_name);
      int input_max_num = input_min_max.Max;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    			parallelLabelHog(ctx, dur, gogc)
    		})
    	})
    
    	// Two conditions to check:
    	// * labelHog should always be labeled.
    	// * The label should _only_ appear on labelHog and the Do call above.
    	for _, s := range p.Sample {
    		isLabeled := s.Label != nil && contains(s.Label["key"], "value")
    		var (
    			mayBeLabeled     bool
    			mustBeLabeled    string
    			mustNotBeLabeled string
    		)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    //     if the scheduler gets the cancel done before StartRequest finishes;
    //     the test handles this without regard to whether the implementation will ever do that.
    //  8. Check that the above took exactly 1 second.
    func TestContextCancel(t *testing.T) {
    	metrics.Register()
    	metrics.Reset()
    	now := time.Now()
    	clk, counter := testeventclock.NewFake(now, 0, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if rv := c.watchCache.getListResourceVersion(); rv != 0 {
    			lastProcessedResourceVersion = rv
    			return true, nil
    		}
    		return false, nil
    	}); err != nil {
    		// given the function above never returns error,
    		// the non-empty error means that the stopCh was closed
    		return
    	}
    	for {
    		select {
    		case event, ok := <-c.incoming:
    			if !ok {
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build arm64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    	} else if currentReplicas > hpa.Spec.MaxReplicas {
    		rescaleReason = "Current number of replicas above Spec.MaxReplicas"
    		desiredReplicas = hpa.Spec.MaxReplicas
    	} else if currentReplicas < minReplicas {
    		rescaleReason = "Current number of replicas below Spec.MinReplicas"
    		desiredReplicas = minReplicas
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      "TFL::IsOneHotIndexAttribute($0)">>;
    
    // Checks if the shape has static shape with last dimension equals 1.
    def IsLastDimensionEqualOne : Constraint<CPred<"IsLastDimensionEqualOne($0)">>;
    
    // As above but if shape is not static and rank 2 with last dim 1.
    def IsLastDimensionEqualOneOrDynamicBatchDimRank2 : Constraint<
      CPred<"IsLastDimensionEqualOne($0) || "
            "(!$0.getType().cast<ShapedType>().hasStaticShape() && "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_darwin_amd64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build amd64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// VolumeClaimTemplates when the StatefulSet is scaled down. The default
    	// policy of `Retain` causes PVCs to not be affected by a scaledown. The
    	// `Delete` policy causes the associated PVCs for any excess pods above
    	// the replica count to be deleted.
    	WhenScaled PersistentVolumeClaimRetentionPolicyType `json:"whenScaled,omitempty" protobuf:"bytes,2,opt,name=whenScaled,casttype=PersistentVolumeClaimRetentionPolicyType"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top