Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 176 for GetIps (0.13 sec)

  1. docs/hotfixes.md

    ## Creating a hotfix branch
    
    Customers in MinIO are allowed LTS on any release they choose to standardize. Production setups seldom change and require maintenance. Hotfix branches are such maintenance branches that allow customers to operate a production cluster without drastic changes to their deployment.
    
    ## Backporting a fix
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    			if err != nil {
    				return nil, err
    			}
    			if finalIP != nil {
    				klog.V(4).Infof("Found active IP %v ", finalIP)
    				return finalIP, nil
    			}
    			// In case of network setups where default routes are present, but network
    			// interfaces use only link-local addresses (e.g. as described in RFC5549).
    			// the global IP is assigned to the loopback interface, and we should use it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

          if (!call_op->getResult(i).use_empty()) return failure();
        }
      }
      return success();
    }
    
    LogicalResult CheckFusableKerasLstm(func::FuncOp lstm_func, ModuleOp module) {
      for (auto func : module.getOps<func::FuncOp>()) {
        if (func == lstm_func) continue;
        auto result = func.walk([&](CallOpInterface op) {
          if (dyn_cast<func::FuncOp>(op.resolveCallable()) == lstm_func) {
            // Keras LSTM have 5 outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. docs/kms/IAM.md

    it in plaintext (no KMS) or re-encrypts using the KMS.
    
    > Is this change backward compatible? Will it break my setup?
    
    This change is not backward compatible for all setups. In particular, the native
    Hashicorp Vault integration - which has been deprecated already - won't be
    supported anymore. KES is now mandatory if a third-party KMS should be used.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

                                        min_num_elements_for_weights_);
      FrozenRewritePatternSet frozen_patterns(std::move(patterns));
      for (auto func : module.getOps<func::FuncOp>()) {
        if (failed(applyPatternsAndFoldGreedily(func, frozen_patterns))) {
          func.emitError()
              << "quant-lift-quantizable-spots-as-functions-drq failed.";
          signalPassFailure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

    std::unordered_map<std::string, std::vector<func::FuncOp>>
    PickSubgraphsPass::CollectSubgraphFuncs(ModuleOp module) {
      std::unordered_map<std::string, std::vector<func::FuncOp>> func_impls;
      for (auto func : module.getOps<func::FuncOp>()) {
        auto interface_name = GetInterFaceName(func);
        if (interface_name.has_value()) {
          auto impls_iter = func_impls.find(*interface_name);
          if (impls_iter == func_impls.end())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  7. docs/sts/web-identity.md

    to MFA authentication challenges, etc). After successful login, the user is redirected back to the MinIO console. This redirect URL is specified as a parameter by MinIO when the user is redirected to the OpenID Provider in the beginning. For some setups, extra configuration may be required for this step to work correctly.
    
    For a simple setup where the user/client app accesses MinIO directly (i.e. with no intervening proxies/load-balancers), and each MinIO server (if there are more than one)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_restore_op.cc

    std::vector<TF::VarHandleOp> CollectVariableOps(
        func::FuncOp session_init_func) {
      std::vector<TF::VarHandleOp> var_handle_ops{};
    
      for (auto assign_variable_op : llvm::make_early_inc_range(
               session_init_func.getOps<TF::AssignVariableOp>())) {
        Value resource_operand = assign_variable_op.getOperand(0);
        Value assigned_value_operand = assign_variable_op.getOperand(1);
    
        if (auto var_handle_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 12 06:02:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

      return IsReplicatedGraph(module);
    }
    
    bool HasTPUPartitionedCallOpInModule(mlir::ModuleOp module) {
      bool has_tpu_partitioned_call = false;
      for (auto func_op : module.getOps<mlir::func::FuncOp>()) {
        func_op->walk([&](mlir::TF::TPUPartitionedCallOp op) {
          has_tpu_partitioned_call = true;
        });
        if (has_tpu_partitioned_call) break;
      }
      return has_tpu_partitioned_call;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_quantized_functions.cc

        signalPassFailure();
        return;
      }
    
      // Copy all functions used by this signature to the final MLIR module.
      for (func::FuncOp func : module_ref->getOps<func::FuncOp>()) {
        // Do nothing if the function already exists.
        if (symbol_table.lookup(func.getSymName()) != nullptr) continue;
    
        // Set the function to private and insert to the module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top