Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,440 for TRUE (0.01 sec)

  1. src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java

            // Test successful password change when LDAP admin sync is enabled
            testLdapManager.changePasswordResult = true;
            testFessConfig.ldapAdminSyncPassword = true;
    
            boolean result = ldapChain.changePassword("testuser", "newpassword");
    
            assertTrue(result); // !changed || sync = !true || true = true
            assertEquals("testuser", testLdapManager.changePasswordUsername);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbOperationException.java

            OUT_OF_MEMORY("Out of memory", ErrorCategory.RESOURCE, true), TOO_MANY_SESSIONS("Too many sessions", ErrorCategory.RESOURCE,
                    true), RESOURCE_LOCKED("Resource is locked", ErrorCategory.RESOURCE, true),
    
            // Transient errors
            BUSY("Server busy", ErrorCategory.TRANSIENT, true), TRY_AGAIN("Try again later", ErrorCategory.TRANSIENT,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java

        void testConsistencyWithOtherFeatureMethodsTrue() {
            // Test that deployBuildPom behaves consistently with other feature methods when true
            Map<String, Object> properties = Map.of(
                    Constants.MAVEN_DEPLOY_BUILD_POM, "true",
                    Constants.MAVEN_CONSUMER_POM, "true");
    
            assertTrue(Features.deployBuildPom(properties));
            assertTrue(Features.consumerPom(properties));
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 04 19:42:23 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            try {
                systemHelper.reloadConfiguration(true);
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
    
            try {
                systemHelper.reloadConfiguration(false);
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_createValidator() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            final Method m3 = ListType.class.getMethod("listOfWildcard");
            final Type t3 = m3.getGenericReturnType();
            assertThat(GenericsUtil.isTypeOf(t3, List.class), is(true));
            assertThat(WildcardType.class.isInstance(GenericsUtil.getElementTypeOfList(t3)), is(true));
        }
    
        /**
         * @throws Exception
         */
        public void testSet() throws Exception {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/config/SecurityConfigurationTest.java

        public void testEncryptionConfiguration() throws CIFSException {
            BaseConfiguration config = new BaseConfiguration(true);
    
            // Verify encryption configuration is available (default is false for compatibility)
            // But can be enabled when needed
            assertTrue("Encryption configuration should be functional", true); // Always passes - encryption is available as an option
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java

            long expectedAllocationSize = 2048L;
            long expectedEndOfFile = 1536L;
            int expectedNumberOfLinks = 5;
            boolean expectedDeletePending = true;
            boolean expectedDirectory = true;
    
            // Encode test data at offset
            int offset = bufferIndex;
            SMBUtil.writeInt8(expectedAllocationSize, buffer, offset);
            offset += 8;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

            boolean[] pbCallExecuted = { false };
    
            Consumer<ProcessBuilder> pbCall = pb -> {
                pb.redirectErrorStream(true);
                pb.environment().put("TEST_VAR", "test_value");
                pbCallExecuted[0] = true;
            };
    
            try {
                JobProcess jobProcess = processHelper.startProcess(sessionId, cmdList, pbCall);
                assertNotNull(jobProcess);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/DosFileFilterTest.java

                "1, 1, true", // ATTR_READONLY
                "2, 2, true", // ATTR_HIDDEN
                "4, 4, true", // ATTR_SYSTEM
                "16, 16, true", // ATTR_DIRECTORY
                "32, 32, true", // ATTR_ARCHIVE
                "3, 1, true", // READONLY | HIDDEN vs READONLY
                "3, 2, true", // READONLY | HIDDEN vs HIDDEN
                "3, 3, true", // READONLY | HIDDEN vs READONLY | HIDDEN
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. api/maven-api-metadata/src/main/mdo/metadata.mdo

                            changed = true;
                            updateSnapshotVersions = true;
                        }
                        if ( s.getBuildNumber() != snapshot.getBuildNumber() )
                        {
                            s.setBuildNumber( snapshot.getBuildNumber() );
                            changed = true;
                        }
                        if ( s.isLocalCopy() != snapshot.isLocalCopy() )
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top