- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 49 for pnum (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/storage/StorageType.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.storage; /** * Enum for supported storage types. */ public enum StorageType { /** Amazon S3 */ S3, /** Google Cloud Storage */ GCS, /** S3-compatible storage (MinIO, etc.) */ S3_COMPATCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 864 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/SsoResponseType.java
*/ package org.codelibs.fess.sso; /** * Represents the type of SSO (Single Sign-On) response being requested. * This enum is used to differentiate between various SSO operations, * such as metadata requests and logout actions. */ public enum SsoResponseType { /** * Indicates a request for SSO metadata, which is typically used for * configuration and discovery in protocols like SAML.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
// Test that values() returns all enum constants SsoResponseType[] values = SsoResponseType.values(); assertNotNull(values); assertEquals(2, values.length); assertEquals(SsoResponseType.METADATA, values[0]); assertEquals(SsoResponseType.LOGOUT, values[1]); } @Test public void test_valueOf() { // Test valueOf for valid enum names
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.3K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 6.5K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/LinkRenderer.java
return apilink; } else { listener.warning(String.format("Could not generate link for enum constant %s", enumConstant)); Element element = document.createElement("UNKNOWN-ENUM"); element.appendChild(document.createTextNode(enumConstant.toString())); return element; } }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/GroupTests.java
Map<String, Object> searchBody = new HashMap<>(); searchBody.put("size", NUM * 2); String response = checkGetMethod(searchBody, getListEndpointSuffix()).asString(); List<Map<String, String>> attrList = JsonPath.from(response).getList(getJsonPath() + ".attributes"); assertEquals(NUM, attrList.size()); for (Map<String, String> attr : attrList) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jun 19 07:14:01 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (num == null) { num = fessConfig.getPagingSearchPageSizeAsInteger(); } if (num > fessConfig.getPagingSearchPageMaxSizeAsInteger().intValue() || num <= 0) { num = fessConfig.getPagingSearchPageMaxSizeAsInteger(); } return num; } @Override public String[] getLanguages() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java
super(); } // `size` is an alias of `num`. // `size` is prepared to be compatible with other Admin APIs /** Number of search results to retrieve (alias for num) */ @ValidateTypeFailure public Integer size; @Override public void initialize() { if (size != null) { num = num == null || num < size ? size : num; } super.initialize(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayAttributes.kt
import org.gradle.api.attributes.Attribute import org.gradle.api.attributes.AttributeCompatibilityRule import org.gradle.api.attributes.CompatibilityCheckDetails import org.gradle.api.provider.Provider enum class NullawayState { ENABLED, DISABLED } object NullawayAttributes { val nullawayAttribute = Attribute.of("org.gradle.gradlebuild.nullaway", NullawayState::class.java)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Aug 20 13:18:23 GMT 2025 - 1.9K bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/JvmVersion.kt
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package common enum class JvmVersion( val major: Int, ) { JAVA_8(8), JAVA_11(11), JAVA_17(17), JAVA_21(21), JAVA_25(25), JAVA_26(26), ;
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 15 19:30:24 GMT 2026 - 873 bytes - Click Count (0)