Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for procedure (1.98 sec)

  1. pkg/volume/volume.go

    type Unmounter interface {
    	Volume
    	// TearDown unmounts the volume from a self-determined directory and
    	// removes traces of the SetUp procedure.
    	TearDown() error
    	// TearDown unmounts the volume from the specified directory and
    	// removes traces of the SetUp procedure.
    	TearDownAt(dir string) error
    }
    
    // BlockVolumeMapper interface is a mapper interface for block volume.
    type BlockVolumeMapper interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    		upgradeCfg.Apply.Patches = &kubeadmapi.Patches{Directory: flags.patchesDir}
    	} else if upgradeCfg.Apply.Patches == nil {
    		upgradeCfg.Apply.Patches = &kubeadmapi.Patches{}
    	}
    
    	// Now; perform the upgrade procedure
    	if err := PerformControlPlaneUpgrade(flags, client, waiter, initCfg, upgradeCfg); err != nil {
    		return errors.Wrap(err, "[upgrade/apply] FATAL")
    	}
    
    	// Upgrade RBAC rules and addons.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

            quantization_method,
        tensorflow::quantization::OpSet op_set, int min_num_elements_for_weights);
    
    // Replaces tf.CustomAggregator ops with quant.Stats ops for finalizing the
    // calibration procedure.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateConvertCustomAggregationOpToQuantStatsPass();
    
    // Inserts quantized function library.
    std::unique_ptr<OperationPass<ModuleOp>> CreateInsertQuantizedFunctionsPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa_legacy.go

    		return false
    	}
    	x.Mod(x, N)
    	return x.Cmp(r) == 0
    }
    
    var one = new(big.Int).SetInt64(1)
    
    // randFieldElement returns a random element of the order of the given
    // curve using the procedure given in FIPS 186-4, Appendix B.5.2.
    func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error) {
    	// See randomPoint for notes on the algorithm. This has to match, or s390x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_custom_aggregation_ops.cc

        return "quant-insert-custom-aggregation-ops";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Insert custom aggregation ops for the calibration procedure";
      }
    
      void getDependentDialects(DialectRegistry &registry) const override {
        registry.insert<TF::TensorFlowDialect>();
      }
    
      void runOnOperation() override;
    
     private:
      enum TestCase {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/common.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    // enforceRequirements verifies that it's okay to upgrade and then returns the variables needed for the rest of the procedure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.td

          This transformation reorders operations such that operations that will be
          executed by the Flex delegate will be followed by another Flex delegated
          operator, if possible. The reordering uses the same greedy procedure that
          is executed at runtime (in tensorflow/lite/graph_info.cc.)
          This allows us to have an IR of the model that is in the same execution order
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    	priv.PublicKey.X, priv.PublicKey.Y, err = c.pointToAffine(Q)
    	if err != nil {
    		return nil, err
    	}
    	return priv, nil
    }
    
    // randomPoint returns a random scalar and the corresponding point using the
    // procedure given in FIPS 186-4, Appendix B.5.2 (rejection sampling).
    func randomPoint[Point nistPoint[Point]](c *nistCurve[Point], rand io.Reader) (k *bigmod.Nat, p Point, err error) {
    	k = bigmod.NewNat()
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/controller.go

    	// 2. connect: but the patch is based on the old workloadentry because of the propagation latency.
    	// So in this case the `istio.io/disconnectedAt` is still there and the cleanup procedure will go on.
    	connTime := wle.Annotations[annotation.IoIstioConnectedAt.Name]
    	if connTime != "" {
    		// handle workload leak when both workload/pilot down at the same time before pilot has a chance to set disconnTime
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. src/encoding/gob/doc.go

    /*
    Package gob manages streams of gobs - binary values exchanged between an
    [Encoder] (transmitter) and a [Decoder] (receiver). A typical use is transporting
    arguments and results of remote procedure calls (RPCs) such as those provided by
    [net/rpc].
    
    The implementation compiles a custom codec for each data type in the stream and
    is most efficient when a single [Encoder] is used to transmit a stream of values,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top