Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pivoting (0.3 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

      viewer(new URL(window.location.href), nodes, {
        hiliter: (n, on) => { return hilite(n, on); },
        current: () => {
          let r = new Map();
          if (pivots.length == 1 && pivots[0] == 0) {
            // Not pivoting
          } else {
            for (let p of pivots) {
              r.set(p, true);
            }
          }
          return r;
        }});
    
      render();
    
      // Helper functions follow:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/etcd/etcd.go

    	// MemberRemove removes an existing member from the cluster.
    	MemberRemove(ctx context.Context, id uint64) (*clientv3.MemberRemoveResponse, error)
    
    	// MemberPromote promotes a member from raft learner (non-voting) to raft voting member.
    	MemberPromote(ctx context.Context, id uint64) (*clientv3.MemberPromoteResponse, error)
    
    	// Status gets the status of the endpoint.
    	Status(ctx context.Context, endpoint string) (*clientv3.StatusResponse, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      side.
      On CPU, solution is computed via Gaussian elimination with or without partial
      pivoting, depending on `partial_pivoting` attribute. On GPU, Nvidia's cuSPARSE
      library is used: https://docs.nvidia.com/cuda/cusparse/index.html#gtsv
      Partial pivoting is not yet supported by XLA backends.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Kubeadm: added the experimental (alpha) feature gate `EtcdLearnerMode` that allows etcd members to be joined as learner and only then promoted as voting members ([#113318](https://github.com/kubernetes/kubernetes/pull/113318), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top