Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 470 for paling (0.16 sec)

  1. docs/em/docs/tutorial/dependencies/index.md

    active_user(["active_user"])
    admin_user(["admin_user"])
    paying_user(["paying_user"])
    
    public["/items/public/"]
    private["/items/private/"]
    activate_user["/users/{user_id}/activate"]
    pro_items["/items/pro/"]
    
    current_user --> active_user
    active_user --> admin_user
    active_user --> paying_user
    
    current_user --> public
    active_user --> private
    admin_user --> activate_user
    paying_user --> pro_items
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Jun 24 14:47:15 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

        protected FessConfig fessConfig;
    
        public List<KeyMatch> getKeyMatchList(final KeyMatchPager keyMatchPager) {
    
            final PagingResultBean<KeyMatch> keyMatchList = keyMatchBhv.selectPage(cb -> {
                cb.paging(keyMatchPager.getPageSize(), keyMatchPager.getCurrentPageNumber());
                setupListCondition(cb, keyMatchPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NbtException.java

                    break;
                case NOT_LISTENING_CALLED:
                    result += "Not listening on called name";
                    break;
                case NOT_LISTENING_CALLING:
                    result += "Not listening for calling name";
                    break;
                case CALLED_NOT_PRESENT:
                    result += "Called name not present";
                    break;
                case NO_RESOURCES:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/UserService.java

        @Resource
        protected FessConfig fessConfig;
    
        public List<User> getUserList(final UserPager userPager) {
    
            final PagingResultBean<User> userList = userBhv.selectPage(cb -> {
                cb.paging(userPager.getPageSize(), userPager.getCurrentPageNumber());
                setupListCondition(cb, userPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  5. internal/lsync/lrwmutex.go

    }
    
    // NewLRWMutex - initializes a new lsync RW mutex.
    func NewLRWMutex() *LRWMutex {
    	return &LRWMutex{}
    }
    
    // Lock holds a write lock on lm.
    //
    // If the lock is already in use, the calling go routine
    // blocks until the mutex is available.
    func (lm *LRWMutex) Lock() {
    	const isWriteLock = true
    	lm.lockLoop(context.Background(), lm.id, lm.source, math.MaxInt64, isWriteLock)
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

        protected FessConfig fessConfig;
    
        public List<WebConfig> getWebConfigList(final WebConfigPager webConfigPager) {
    
            final PagingResultBean<WebConfig> webConfigList = webConfigBhv.selectPage(cb -> {
                cb.paging(webConfigPager.getPageSize(), webConfigPager.getCurrentPageNumber());
                setupListCondition(cb, webConfigPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

        public List<ScheduledJob> getScheduledJobList(final SchedulerPager scheduledJobPager) {
    
            final PagingResultBean<ScheduledJob> scheduledJobList = scheduledJobBhv.selectPage(cb -> {
                cb.paging(scheduledJobPager.getPageSize(), scheduledJobPager.getCurrentPageNumber());
                setupListCondition(cb, scheduledJobPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/README.md

    HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
    logging.setLevel(Level.BASIC);
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(logging)
      .build();
    ```
    
    You can change the log level at any time by calling `setLevel()`.
    
    To log to a custom location, pass a `Logger` instance to the constructor.
    ```java
    HttpLoggingInterceptor logging = new HttpLoggingInterceptor(new Logger() {
      @Override public void log(String message) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Dec 17 15:34:10 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NbtException.java

                        case NOT_LISTENING_CALLED:
                            result += "Not listening on called name";
                            break;
                        case NOT_LISTENING_CALLING:
                            result += "Not listening for calling name";
                            break;
                        case CALLED_NOT_PRESENT:
                            result += "Called name not present";
                            break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

        public List<RelatedContent> getRelatedContentList(final RelatedContentPager relatedContentPager) {
    
            final PagingResultBean<RelatedContent> relatedContentList = relatedContentBhv.selectPage(cb -> {
                cb.paging(relatedContentPager.getPageSize(), relatedContentPager.getCurrentPageNumber());
                setupListCondition(cb, relatedContentPager);
            });
    
            // update pager
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.6K bytes
    - Viewed (0)
Back to top