Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 5,353 for Return (0.03 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java

        }
    
        /**
         * Returns the temporary file associated with this input stream.
         *
         * @return the temporary file
         */
        public File getTemporaryFile() {
            return tempFile;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see java.io.InputStream#read()
         */
        @Override
        public int read() throws IOException {
            return fileInputStream.read();
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. tests/scopes_test.go

    				return tx.Where("z = 0").Scopes(
    					func(d *gorm.DB) *gorm.DB { return d.Where("a = 1") },
    					func(d *gorm.DB) *gorm.DB {
    						return d.Or(DB.Where("b = 2").Or("c = 3"))
    					},
    				).Find(&Language{})
    			},
    			expected: `SELECT * FROM "languages" WHERE z = 0 AND a = 1 OR (b = 2 OR c = 3)`,
    		}, {
    			name: "depth_2",
    			queryFn: func(tx *gorm.DB) *gorm.DB {
    				return tx.Scopes(
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

                    return null;
                }
    
                @Override
                public String getScheme() {
                    return null;
                }
    
                @Override
                public String getServerName() {
                    return null;
                }
    
                @Override
                public int getServerPort() {
                    return 0;
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

            return this;
        }
    
        /**
         * Gets the name of the featureset.
         *
         * @return The featureset name.
         */
        public String featureSetName() {
            return featureSetName;
        }
    
        /**
         * Sets the name of the featureset.
         *
         * @param featureSetName The featureset name.
         * @return This query builder.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  5. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java

                return map;
            } else {
                switch (map.size()) {
                    case 0:
                        return emptyMap();
                    case 1:
                        Map.Entry<K, V> entry = map.entrySet().iterator().next();
                        return singletonMap(entry.getKey(), entry.getValue());
                    default:
                        return new MapN<>(map);
                }
            }
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 07 11:47:42 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/LineIterator.java

            assertArgumentNotNull("reader", reader);
            return iterable(new BufferedReader(reader));
        }
    
        /**
         * Returns an {@link Iterable} that wraps a {@link LineIterator} for use in enhanced for-loops.
         *
         * @param reader
         *            The {@link BufferedReader} to read strings from. Must not be {@literal null}.
         * @return An {@link Iterable} that wraps a {@link LineIterator}.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java

            if (maxLength != null && maxLength >= 0L) {
                return maxLength;
            }
            return defaultMaxLength;
        }
    
        /**
         * Returns the default maximum content length.
         * @return The default maximum content length in bytes.
         */
        public long getDefaultMaxLength() {
            return defaultMaxLength;
        }
    
        /**
         * Sets the default maximum content length.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                        requestBuilder.setFetchSource(fields, null);
                    }
                    return true;
                }, entity -> {
                    entityList.add(entity);
                    return entityList.size() <= (exceeded ? maxSearchDocSize : numFound);
                });
                return entityList;
            }
            return searchEngineClient.getDocumentList(fessConfig.getIndexDocumentUpdateIndex(), requestBuilder -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/pac/PacLogonInfo.java

         * @return the logon count
         */
        public short getLogonCount() {
            return this.logonCount;
        }
    
        /**
         * Returns the number of failed password attempts for this user.
         * @return the bad password count
         */
        public short getBadPasswordCount() {
            return this.badPasswordCount;
        }
    
        /**
         * Returns the user's account name.
         * @return the user name
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionAggregation.java

        public boolean hasAggregations() {
            return aggregationAggregationBuilderList != null && !aggregationAggregationBuilderList.isEmpty();
        }
    
        public List<AbstractAggregationBuilder<?>> getAggregationBuilderList() {
            return aggregationAggregationBuilderList != null ? aggregationAggregationBuilderList : Collections.emptyList();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.4K bytes
    - Viewed (0)
Back to top