- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 2,784 for TRUE (0.47 sec)
-
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
void testConstructorWithBuffer() throws IOException { // Prepare minimal valid SecurityDescriptor buffer prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, true, true, false); SecurityDescriptor sd = new SecurityDescriptor(testBuffer, 0, testBuffer.length); assertNotNull(sd.getOwnerUserSid()); assertNotNull(sd.getOwnerGroupSid());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java
when(tree.acquire()).thenReturn(tree); when(tree.isSMB2()).thenReturn(true); when(pipe.openUnshared(eq("\\\\pipe\\\\w"), eq(0), anyInt(), anyInt(), eq(SmbConstants.ATTR_NORMAL), eq(0))).thenReturn(fh); when(fh.acquire()).thenReturn(fh); when(fh.isValid()).thenReturn(true, false); // first true, then false handle.ensureOpen(); assertTrue(handle.isOpen());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
assertEquals("aaa\\/bbb", getQuery("aaa/bbb", new String[0], Collections.emptyMap(), Collections.emptyMap(), true)); assertEquals("\\\\", getQuery("\\", new String[0], Collections.emptyMap(), Collections.emptyMap(), true)); assertEquals("\\\\\\\\", getQuery("\\\\", new String[0], Collections.emptyMap(), Collections.emptyMap(), true));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.useExtendedSecurity = true; testConfig.signingPreferred = true; testConfig.useNtStatus = true; testConfig.useUnicode = true; testConfig.forceUnicode = true; testConfig.initDefaults();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
cmd/net_test.go
expectedErr error }{ {"", "", false, errors.New("unable to process empty address")}, {":9000", ":9000", true, nil}, {"localhost:9000", ":9000", true, nil}, {"localhost:9000", "http://localhost:9000", true, nil}, {"http://localhost:9000", ":9000", true, nil}, {"http://localhost:9000", "http://localhost:9000", true, nil}, {"http://8.8.8.8:9000", "http://localhost:9000", false, nil}, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 9.2K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
get() = Proxy(Proxy.Type.HTTP, socketAddress) /** * True if ALPN is used on incoming HTTPS connections to negotiate a protocol like HTTP/1.1 or * HTTP/2. This is true by default; set to false to disable negotiation and restrict connections * to HTTP/1.1. */ public var protocolNegotiationEnabled: Boolean = true /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 40.3K bytes - Viewed (0) -
gradle.properties
org.gradle.caching=true org.gradle.parallel=true android.useAndroidX=true kotlin.mpp.applyDefaultHierarchyTemplate=false androidBuild=false graalBuild=false loomBuild=false containerTests=false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 240 bytes - Viewed (0) -
cmd/xl-storage-free-version_test.go
expectedErr error }{ // ToFileInfo with 'inclFreeVers = true' should return the latest // non-free version if one is present { vol: newtierfi.Volume, name: newtierfi.Name, inclFreeVers: true, afterFn: xl.DeleteVersion, expectedFree: false, }, // ToFileInfo with 'inclFreeVers = true' must return the latest free // version when no non-free versions are present.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Mar 02 05:11:03 UTC 2024 - 7.8K bytes - Viewed (0) -
callbacks/helper_test.go
t.Fatalf("loaded should be true") } // t1 already exist but t2 not if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf([]*testM{&t1, &t2, &t3})); loaded { t.Fatalf("loaded should be false") } if loaded = loadOrStoreVisitMap(&vm, reflect.ValueOf([]*testM{&t2, &t3})); !loaded { t.Fatalf("loaded should be true") } } func TestConvertMapToValuesForCreate(t *testing.T) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Mar 05 02:22:57 UTC 2024 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/context/CIFSContextWrapperTest.java
verify(mockDelegate).getSIDResolver(); } @Test void testHasDefaultCredentials_True() { // Test hasDefaultCredentials() method when true when(mockDelegate.hasDefaultCredentials()).thenReturn(true); assertTrue(cifsContextWrapper.hasDefaultCredentials()); verify(mockDelegate).hasDefaultCredentials(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0)