- Sort Score
- Result 10 results
- Languages All
Results 1941 - 1950 of 2,048 for BOOLEAN (0.1 sec)
-
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
} @DisplayName("Should handle various share flag combinations") @ParameterizedTest @MethodSource("provideFlagCombinations") void testShareFlagCombinations(int flags, boolean expectedDfs) throws SMBProtocolDecodingException { // Given byte[] buffer = createValidResponseBuffer(0, flags, 0, 0); // When response.readBytesWireFormat(buffer, 0);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
cmd/postpolicyform.go
return parsedPolicy, fmt.Errorf("Unknown field %s of type %s found in POST policy form", condt, reflect.TypeOf(condt).String()) } } return parsedPolicy, nil } // checkPolicyCond returns a boolean to indicate if a condition is satisfied according // to the passed operator func checkPolicyCond(op string, input1, input2 string) bool { switch op { case policyCondEqual: return input1 == input2
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
*/ protected class StemmerOverrideUpdater implements Closeable { /** A flag indicating whether the changes have been committed. */ protected boolean isCommit = false; /** The temporary file to write changes to. */ protected File newFile; /** The writer for the temporary file. */ protected Writer writer;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
* Checks if the path starts with HTTP or HTTPS protocols. * * @param path the path to check * @return true if the path is a web crawling path, false otherwise */ protected boolean isWebCrawlingPath(final String path) { if (path.startsWith("http:") || path.startsWith("https:")) { return true; } return false; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
} @Test public void testSecureWipeUtility() { byte[] data = new byte[16]; new SecureRandom().nextBytes(data); // Verify data is not all zeros initially boolean hasNonZero = false; for (byte b : data) { if (b != 0) { hasNonZero = true; break; } }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
if (buildType !is CompileAll) { conditions { doesNotEqual("skip.build", "true") } } } fun buildToolGradleParameters( isContinue: Boolean = true, maxParallelForks: String = "%maxParallelForks%", ): List<String> = listOf( // We pass the 'maxParallelForks' setting as 'workers.max' to limit the maximum number of executers even
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
throwValidationError(messages -> messages.addErrorsFailedToWriteDesignImageFile(GLOBAL), this::asListHtml); } return redirect(getClass()); } private boolean checkFileType(final String fileName, final String[] exts) { if (fileName == null) { return false; } final String lFileName = fileName.toLowerCase(Locale.ENGLISH);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
for (int i = 0; i < operationsPerThread; i++) { try { // Test connection pool operations without actually connecting boolean contains = pool.contains(null); // Should handle gracefully successCount.incrementAndGet(); } catch (Exception e) { synchronized (exceptions) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
} catch (Exception e) { throw new AssertionError(e); } } // Helper to set private flag 'treeAcquired' private static void setTreeAcquired(SmbTreeConnection c, boolean val) { try { Field f = SmbTreeConnection.class.getDeclaredField("treeAcquired"); f.setAccessible(true); f.set(c, val); } catch (Exception e) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
private static final class LoggerHolder { static final Logger logger = Logger.getLogger(CacheBuilder.class.getName()); } static final int UNSET_INT = -1; boolean strictParsing = true; int initialCapacity = UNSET_INT; int concurrencyLevel = UNSET_INT; long maximumSize = UNSET_INT; long maximumWeight = UNSET_INT; @Nullable Weigher<? super K, ? super V> weigher;Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0)