- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 2,558 for sizzle (0.03 sec)
-
cmd/erasure-healing.go
type healingMetric uint8 const ( healingMetricBucket healingMetric = iota healingMetricObject healingMetricCheckAbandonedParts ) // List a prefix or a single object versions and heal func (er erasureObjects) listAndHeal(ctx context.Context, bucket, prefix string, recursive bool, scanMode madmin.HealScanMode, healEntry func(string, metaCacheEntry, madmin.HealScanMode) error) error {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
// Debug: print what we actually got if (result.size() > 0) { for (CharMappingItem item : result) { System.out.println("Unexpected item: " + item.toLineString()); } } // An empty file should return no items assertEquals("Empty file should have no items", 0, result.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when SSO (Single Sign-On) login operations fail. * * This exception is used to indicate various SSO authentication failures * including configuration errors, authentication token validation failures,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/UnresolvedArtifacts.java
*/ package org.apache.maven.artifact.resolver; import java.util.List; import org.apache.maven.artifact.Artifact; import org.apache.maven.artifact.repository.ArtifactRepository; /** * A simple recording of the Artifacts that could not be resolved for a given resolution request, along with * the remote repositories where attempts were made to resolve the artifacts. * */ @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class WebApiManagerTest extends UnitFessTestCase { public void test_matches_withPathBasedImplementation() { // Test simple path-based matching WebApiManager manager = new TestWebApiManager("/api/v1"); TestHttpServletRequest request = new TestHttpServletRequest(); request.setRequestURI("/api/v1/search");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
queue.clear(); } /** * Sets the scroll size. * @param scrollSize The scroll size. */ public void setScrollSize(final int scrollSize) { this.scrollSize = scrollSize; } /** * Sets the limit of document size. * @param limitOfDocumentSize The limit of document size. */ public void setLimitOfDocumentSize(final long limitOfDocumentSize) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java
@Nullable UnaryOperator<String> callback, @Nullable BinaryOperator<String> postprocessor, boolean defaultsToEmpty); /** * Interpolates a single string value using the provided callback function. * This method defaults to not replacing unresolved placeholders. * * @param val The string to be interpolated.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jan 13 16:14:35 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown during SSO (Single Sign-On) processing operations. * * This exception is used to indicate errors that occur during the execution * of SSO authentication and authorization processes. It extends FessSystemException
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
assertEquals(3, facetInfo.field.length); assertSame(fields, facetInfo.field); } // Test size assignment public void test_sizeAssignment() { facetInfo.size = 100; assertEquals(Integer.valueOf(100), facetInfo.size); } // Test minDocCount assignment public void test_minDocCountAssignment() { facetInfo.minDocCount = 10L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
this.existNextPage = existNextPage; } /** * Gets the number of records to display per page. * If page size is not set or is invalid, returns the default page size. * * @return page size */ public int getPageSize() { if (pageSize <= 0) { pageSize = getDefaultPageSize(); } return pageSize; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0)