Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for rollout (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	LOCK_SH                         = 0x1
    	LOCK_EX                         = 0x2
    	LOCK_NB                         = 0x4
    	LOCK_UN                         = 0x8
    	POLLIN                          = 0x0003
    	POLLOUT                         = 0x0004
    	POLLPRI                         = 0x0010
    	POLLERR                         = 0x0020
    	POLLHUP                         = 0x0040
    	POLLNVAL                        = 0x0080
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/defaults_test.go

    	// ensure types are installed
    	_ "k8s.io/kubernetes/pkg/apis/core/install"
    )
    
    // TestWorkloadDefaults detects changes to defaults within PodTemplateSpec.
    // Defaulting changes within this type can cause spurious rollouts of workloads on API server update.
    func TestWorkloadDefaults(t *testing.T) {
    	t.Run("enabled_features", func(t *testing.T) { testWorkloadDefaults(t, true) })
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

            TypeID::get<TF::ResizeNearestNeighborGradOp>(),
            TypeID::get<TF::ReverseSequenceOp>(),
            TypeID::get<TF::RightShiftOp>(),
            TypeID::get<TF::RintOp>(),
            TypeID::get<TF::RollOp>(),
            TypeID::get<TF::RoundOp>(),
            TypeID::get<TF::SegmentSumV2Op>(),
            TypeID::get<TF::SegmentProdV2Op>(),
            TypeID::get<TF::SegmentMinV2Op>(),
            TypeID::get<TF::SegmentMaxV2Op>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	// registry that knows how to measure usage for objects
    	registry quota.Registry
    
    	// TODO these are used together to bucket items by namespace and then batch them up for processing.
    	// The technique is valuable for rollup activities to avoid fanout and reduce resource contention.
    	// We could move this into a library if another component needed it.
    	// queue is indexed by namespace, so that we bundle up on a per-namespace basis
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

          : RewritePattern(
                RollOp::getOperationName(), 1, context,
                {ConstOp::getOperationName(), SliceOp::getOperationName(),
                 ConcatV2Op::getOperationName()}) {}
    
      LogicalResult matchAndRewrite(Operation *op,
                                    PatternRewriter &rewriter) const override {
        auto tf_roll_op = cast<RollOp>(op);
    
        auto input_ty =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  6. RELEASE.md

        "denylist" where possible. Please see
        [this list](https://developers.google.com/style/word-list#blacklist) for
        more context.
    *   Adds `tf.config.experimental.mlir_bridge_rollout` which will help us rollout
        the new MLIR TPU bridge.
    *   Adds `tf.experimental.register_filesystem_plugin` to load modular filesystem
        plugins from Python
    
    ## Thanks to our Contributors
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	EPOLLHUP                                    = 0x10
    	EPOLLIN                                     = 0x1
    	EPOLLMSG                                    = 0x400
    	EPOLLONESHOT                                = 0x40000000
    	EPOLLOUT                                    = 0x4
    	EPOLLPRI                                    = 0x2
    	EPOLLRDBAND                                 = 0x80
    	EPOLLRDHUP                                  = 0x2000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	RESOLVE_NO_SYMLINKS   = 0x4
    	RESOLVE_NO_XDEV       = 0x1
    )
    
    type PollFd struct {
    	Fd      int32
    	Events  int16
    	Revents int16
    }
    
    const (
    	POLLIN   = 0x1
    	POLLPRI  = 0x2
    	POLLOUT  = 0x4
    	POLLERR  = 0x8
    	POLLHUP  = 0x10
    	POLLNVAL = 0x20
    )
    
    type sigset_argpack struct {
    	ss    *Sigset_t
    	ssLen uintptr
    }
    
    type SignalfdSiginfo struct {
    	Signo     uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        return success();
      }
    };
    
    /// Converts a TF::RollOp to HLO. Only support 0D axis and shift case, and axis
    /// have to be a constant.
    class ConvertRollOp : public OpRewritePattern<TF::RollOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
      LogicalResult matchAndRewrite(TF::RollOp op,
                                    PatternRewriter &rewriter) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // generated by the class object during its lifetime.
    //
    // In theory, this class is not necessary because we should simply take
    // the TF function name and use it as MLIR function name. However, for some
    // unknown reasons (callout for investigation in b/142268695), keeping the
    // function names unchanged in an MLIR roundtrip causes test failures.
    // TODO(b/142268695) Re-evaluate whether we need this class v.s. directly using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top