Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 6,504 for RETURN (0.09 sec)

  1. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                        }
                    }
                }
            }
    
            return itemList;
        }
    
        protected boolean matchLocale(final Locale requestLocale, final Locale targetLocale) {
            if (targetLocale.equals(requestLocale) || targetLocale.equals(Locale.ROOT)) {
                return true;
            }
            if (requestLocale == null || !requestLocale.getLanguage().equals(targetLocale.getLanguage())
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                            tracker);
    
                    return false;
                }
            }
    
            return true;
        }
    
        private boolean hasExpression(String value) {
            return value != null && value.contains("${");
        }
    
        private boolean hasProjectExpression(String value) {
            return value != null && value.contains("${project.");
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  3. internal/crypto/header.go

    func (ssecCopy) IsRequested(h http.Header) bool {
    	if _, ok := h[xhttp.AmzServerSideEncryptionCopyCustomerAlgorithm]; ok {
    		return true
    	}
    	if _, ok := h[xhttp.AmzServerSideEncryptionCopyCustomerKey]; ok {
    		return true
    	}
    	if _, ok := h[xhttp.AmzServerSideEncryptionCopyCustomerKeyMD5]; ok {
    		return true
    	}
    	return false
    }
    
    // ParseHTTP parses the SSE-C copy headers and returns the SSE-C client key
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

        /**
         * @return this session's UID
         */
        public int getUid () {
            return this.uid;
        }
    
    
        /**
         * @return this session's expiration time
         */
        public Long getExpiration () {
            return this.expiration > 0 ? this.expiration : null;
        }
    
    
        /**
         * @return this session's credentials
         */
        public CredentialsInternal getCredentials () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/cbean/bs/BsFavoriteLogCB.java

        @Override
        public FavoriteLogDbm asDBMeta() {
            return FavoriteLogDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "favorite_log";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/cbean/bs/BsUserInfoCB.java

        @Override
        public UserInfoDbm asDBMeta() {
            return UserInfoDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "user_info";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/SmbNegotiation.java

        }
    
    
        /**
         * @return the request
         */
        public SmbNegotiationRequest getRequest () {
            return this.request;
        }
    
    
        /**
         * @return the response
         */
        public SmbNegotiationResponse getResponse () {
            return this.response;
        }
    
    
        /**
         * @return the negoReqBuffer
         */
        public byte[] getRequestRaw () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/MemoryUtil.java

                return 0L;
            }
            if (obj instanceof String) {
                return ((String) obj).length() + 56L;
            }
            if (obj instanceof Number) {
                return 24L;
            }
            if (obj instanceof Date) {
                return 32L;
            }
            if (obj instanceof LocalDateTime) {
                return 80L;
            }
            if (obj instanceof ZonedDateTime) {
                return 2128L;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/QueryCommand.java

            ) {
                return QueryBuilders.prefixQuery(f, text);
            }
            return QueryBuilders.matchPhraseQuery(f, text);
        }
    
        protected String getSearchField(final String defaultField, final String field) {
            if (Constants.DEFAULT_FIELD.equals(field) && defaultField != null) {
                return defaultField;
            }
            return field;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. soft_delete.go

    func (n *DeletedAt) Scan(value interface{}) error {
    	return (*sql.NullTime)(n).Scan(value)
    }
    
    // Value implements the driver Valuer interface.
    func (n DeletedAt) Value() (driver.Value, error) {
    	if !n.Valid {
    		return nil, nil
    	}
    	return n.Time, nil
    }
    
    func (n DeletedAt) MarshalJSON() ([]byte, error) {
    	if n.Valid {
    		return json.Marshal(n.Time)
    	}
    	return json.Marshal(nil)
    }
    
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Feb 01 06:40:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top