Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 409 for balk (0.24 sec)

  1. cmd/metacache-walk.go

    		if s.walkMu != nil {
    			s.walkMu.Unlock()
    		}
    		if err != nil {
    			// Folder could have gone away in-between
    			if err != errVolumeNotFound && err != errFileNotFound {
    				internalLogOnceIf(ctx, err, "metacache-walk-scan-dir")
    			}
    			if opts.ReportNotFound && err == errFileNotFound && current == opts.BaseDir {
    				err = errFileNotFound
    			} else {
    				err = nil
    			}
    			diskHealthCheckOK(ctx, err)
    			return err
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    For a more "real life" example of this, imagine a bank.
    
    Up to recently, most of the banks had multiple cashiers 👨‍💼👨‍💼👨‍💼👨‍💼 and a big line 🕙🕙🕙🕙🕙🕙🕙🕙.
    
    All of the cashiers doing all the work with one client after the other 👨‍💼⏯.
    
    And you have to wait 🕙 in the line for a long time or you lose your turn.
    
    You probably wouldn't want to take your crush 😍 with you to do errands at the bank 🏦.
    
    ### Burger Conclusion
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
  3. src/cmd/cgo/ast.go

    		f.walk(n.Body, ctxTypeSwitch, visit)
    	case *ast.CommClause:
    		f.walk(n.Comm, ctxStmt, visit)
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.SelectStmt:
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.ForStmt:
    		f.walk(n.Init, ctxStmt, visit)
    		f.walk(&n.Cond, ctxExpr, visit)
    		f.walk(n.Post, ctxStmt, visit)
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.RangeStmt:
    		f.walk(&n.Key, ctxExpr, visit)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_label.properties

    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.send_testmail=Send TestMail
    labels.backup_configuration=Back Up
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk File
    labels.backup_button_upload=Upload
    labels.process_time_is_exceeded=The limit of a search time was exceeded. The partial result might be displayed.
    labels.user_given_name=First Name
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  5. src/main/resources/fess_label_en.properties

    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.send_testmail=Send TestMail
    labels.backup_configuration=Back Up
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk File
    labels.backup_button_upload=Upload
    labels.process_time_is_exceeded=The limit of a search time was exceeded. The partial result might be displayed.
    labels.user_given_name=First Name
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ko.properties

    labels.notification_login = 로그인 페이지
    labels.notification_search_top = 검색 홈페이지
    labels.send_testmail = 테스트 메일 보내기
    labels.backup_configuration = 백업
    labels.backup_name = 이름
    labels.backup_bulk_file = Bulk 파일
    labels.backup_button_upload = 업로드
    labels.process_time_is_exceeded = 검색 대기 제한 시간을 초과했습니다. 표시된 결과는 검색 결과의 전부가 아닐 수 있습니다.
    labels.user_given_name = 이름
    labels.givenName = 이름
    labels.user_surname = 성
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  7. src/archive/tar/reader.go

    	if _, err := io.ReadFull(tr.r, tr.blk[:]); err != nil {
    		return nil, nil, err // EOF is okay here; exactly 0 bytes read
    	}
    	if bytes.Equal(tr.blk[:], zeroBlock[:]) {
    		if _, err := io.ReadFull(tr.r, tr.blk[:]); err != nil {
    			return nil, nil, err // EOF is okay here; exactly 1 block of zeros read
    		}
    		if bytes.Equal(tr.blk[:], zeroBlock[:]) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_ru.properties

    labels.ldap_account_filter=Account Filter
    labels.notification_login=Страница входа
    labels.notification_search_top=Главная страница поиска
    labels.send_testmail=Send TestMail
    labels.backup_configuration=Back Up
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk File
    labels.backup_button_upload=Upload
    labels.process_time_is_exceeded=Лимит времени поиска был превышен. Частичный результат может отображаться.
    labels.user_given_name=Имя
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/archive/tar/writer_test.go

    			t.Errorf("test %d, unexpected Close error: %v", i, err)
    		}
    
    		// The prefix field should never appear in the GNU format.
    		var blk block
    		copy(blk[:], b.Bytes())
    		prefix := string(blk.toUSTAR().prefix())
    		prefix, _, _ = strings.Cut(prefix, "\x00") // Truncate at the NUL terminator
    		if blk.getFormat() == FormatGNU && len(prefix) > 0 && strings.HasPrefix(name, prefix) {
    			t.Errorf("test %d, found prefix in GNU format: %s", i, prefix)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 27 16:39:23 GMT 2024
    - 38.7K bytes
    - Viewed (0)
  10. docs/bucket/replication/DESIGN.md

    metadata changes to source object version. If active-active replication is configured, any incoming uploads and metadata changes to versions created on the target, will sync back to the source and be marked as `REPLICA` on the source. AWS, as well as MinIO do not by default sync metadata changes on a object version marked `REPLICA` back to source. This requires a setting in the replication configuration called [replica modification sync](https://aws.amazon.com/about-aws/whats-new/2020/12/amazon-s3-rep...
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
Back to top