Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 920 for heap (0.02 seconds)

  1. docs/ja/docs/help-fastapi.md

    # FastAPIを応援 - ヘルプの入手 { #help-fastapi-get-help }
    
    **FastAPI** は気に入りましたか?
    
    FastAPIや他のユーザー、作者を応援したいですか?
    
    それとも **FastAPI** についてヘルプが必要ですか?
    
    とても簡単に応援できる方法があります(1、2回クリックするだけのものもあります)。
    
    ヘルプを得る方法もいくつかあります。
    
    ## ニュースレターを購読 { #subscribe-to-the-newsletter }
    
    [**FastAPI and friends** ニュースレター](newsletter.md)(配信はまれです)を購読すると、次の情報をキャッチアップできます:
    
    * FastAPI と関連プロジェクトのニュース 🚀
    * ガイド 📝
    * 機能 ✨
    * 互換性に影響する変更 🚨
    * ヒントやコツ ✅
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/help-fastapi.md

    # 協助 FastAPI - 取得協助 { #help-fastapi-get-help }
    
    你喜歡 **FastAPI** 嗎?
    
    你願意協助 FastAPI、其他使用者,以及作者嗎?
    
    或是你想獲得 **FastAPI** 的協助?
    
    有一些非常簡單的方式可以幫忙(有些只需要點一兩下)。
    
    而且也有多種方式可以取得協助。
    
    ## 訂閱電子報 { #subscribe-to-the-newsletter }
    
    你可以訂閱(不常發送的)[**FastAPI 與夥伴**電子報](newsletter.md),隨時掌握:
    
    * 關於 FastAPI 與夥伴的最新消息 🚀
    * 教學指南 📝
    * 新功能 ✨
    * 破壞性變更 🚨
    * 小技巧與祕訣 ✅
    
    ## 在 X(Twitter)關注 FastAPI { #follow-fastapi-on-x-twitter }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  3. docs/zh/docs/help-fastapi.md

    # 帮助 FastAPI - 获取帮助 { #help-fastapi-get-help }
    
    你喜欢 **FastAPI** 吗?
    
    想帮助 FastAPI、其他用户和作者吗?
    
    或者你想获取 **FastAPI** 的帮助?
    
    有很多非常简单的方式可以帮忙(有些只需点一两下)。
    
    同样,也有多种途径可以获得帮助。
    
    ## 订阅新闻邮件 { #subscribe-to-the-newsletter }
    
    你可以订阅(不频繁的)[**FastAPI and friends** 新闻邮件](newsletter.md),获取如下更新:
    
    * FastAPI 及其小伙伴的新闻 🚀
    * 指南 📝
    * 功能 ✨
    * 破坏性更改 🚨
    * 使用技巧 ✅
    
    ## 在 X (Twitter) 上关注 FastAPI { #follow-fastapi-on-x-twitter }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  4. cmd/background-heal-ops.go

    	"runtime"
    	"strconv"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/pkg/v3/env"
    )
    
    // healTask represents what to heal along with options
    //
    //	path: '/' =>  Heal disk formats along with metadata
    //	path: 'bucket/' or '/bucket/' => Heal bucket
    //	path: 'bucket/object' => Heal object
    type healTask struct {
    	bucket    string
    	object    string
    	versionID string
    	opts      madmin.HealOpts
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 27 15:19:03 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  5. internal/config/notify/help.go

    	queueDirComment   = `staging dir for undelivered messages e.g. '/home/events'`
    	queueLimitComment = `maximum limit for undelivered messages, defaults to '100000'`
    )
    
    // Help template inputs for all notification targets
    var (
    	HelpWebhook = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.WebhookEndpoint,
    			Description: "webhook server endpoint e.g. http://localhost:8080/minio/events",
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Sep 06 23:06:30 GMT 2024
    - 19.2K bytes
    - Click Count (0)
  6. cmd/background-newdisks-heal-ops.go

    		tracker = initHealingTracker(disk, mustGetUUID())
    	}
    
    	healingLogEvent(ctx, "Healing drive '%s' - 'mc admin heal alias/ --verbose' to check the current status.", endpoint)
    
    	buckets, _ := z.ListBuckets(ctx, BucketOptions{})
    	// Buckets data are dispersed in multiple pools/sets, make
    	// sure to heal all bucket metadata configuration.
    	buckets = append(buckets, BucketInfo{
    		Name: pathJoin(minioMetaBucket, minioConfigPrefix),
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  7. Makefile

    GOLANGCI_DIR = .bin/golangci/$(GOLANGCI_VERSION)
    GOLANGCI = $(GOLANGCI_DIR)/golangci-lint
    
    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    	@(env bash $(PWD)/buildscripts/checkdeps.sh)
    
    help: ## print this help
    	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
    
    getdeps: ## fetch necessary dependencies
    	@mkdir -p ${GOPATH}/bin
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Apr 27 00:44:22 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  8. cmd/config-current.go

    		config.IdentityOpenIDSubSys: openid.Help,
    		config.IdentityLDAPSubSys:   xldap.Help,
    		config.IdentityTLSSubSys:    xtls.Help,
    		config.IdentityPluginSubSys: idplugin.Help,
    		config.PolicyOPASubSys:      opa.Help,
    		config.PolicyPluginSubSys:   polplugin.Help,
    		config.LoggerWebhookSubSys:  logger.Help,
    		config.AuditWebhookSubSys:   logger.HelpWebhook,
    		config.AuditKafkaSubSys:     logger.HelpKafka,
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 28.5K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/common/admin/head.jsp

    Shinsuke Sugaya <******@****.***> 1771833824 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 949 bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/common/help.jsp

    Shinsuke Sugaya <******@****.***> 1519653691 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Click Count (0)
Back to Top