Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 395 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. cmd/metacache-walk_gen.go

    Klaus Post <******@****.***> 1700528975 -0800
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Nov 21 01:09:35 GMT 2023
    - 7K bytes
    - Viewed (0)
  3. 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)
  4. operator/cmd/mesh/profile-dump.go

    		if v, ok := d["spec"]; ok {
    			// Fall back to showing the entire spec.
    			// (When --config-path is used there will be no spec to remove)
    			decoded = v
    		}
    	}
    	setflags, err := walk("", "", decoded)
    	if err != nil {
    		return []string{}, err
    	}
    	sort.Strings(setflags)
    	return setflags, nil
    }
    
    func walk(path, separator string, obj any) ([]string, error) {
    	switch v := obj.(type) {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 3)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
        connect(peer)
    
        // Verify the peer received what was expected.
        val ping = peer.takeFrame()
        assertThat(ping.type).isEqualTo(Http2.TYPE_PING)
        assertThat(ping.streamId).isEqualTo(0)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 75.4K bytes
    - Viewed (0)
  10. 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)
Back to top