Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 274 for presentation (0.77 sec)

  1. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            ScriptEngine retrieved = scriptEngineFactory.getScriptEngine("  test  ");
            assertNotNull(retrieved);
            assertEquals(engine, retrieved);
        }
    
        // Test case sensitivity preservation in error messages
        public void test_getScriptEngine_errorMessagePreservesCase() {
            try {
                scriptEngineFactory.getScriptEngine("MyNonExistentEngine");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

                Collections.addAll(idList, values);
                return idList;
            }
    
            /**
             * Returns a string representation of this Options object.
             * Contains all option values for debugging and logging purposes.
             *
             * @return string representation containing all option values
             */
            @Override
            public String toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java

            }
        }
    
        @Nested
        @DisplayName("ToString Method Tests")
        class ToStringMethodTests {
    
            @Test
            @DisplayName("Should return correct string representation with default values")
            void shouldReturnCorrectStringWithDefaultValues() {
                // When
                String result = fileFsFullSizeInfo.toString();
    
                // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java

                int bytesWritten = chunk.encode(buffer, startIndex);
    
                // Then
                assertEquals(EXPECTED_SIZE, bytesWritten);
                // Negative values should be encoded as their unsigned representation
                assertEquals(negativeOffset, SMBUtil.readInt8(buffer, startIndex));
                assertEquals(negativeOffset, SMBUtil.readInt8(buffer, startIndex + 8));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. cmd/bootstrap-peer-server.go

    		return err
    	}
    	// We do not need the response after returning.
    	defer serverVerifyHandler.PutResponse(recvCfg)
    
    	return srcCfg.Diff(recvCfg)
    }
    
    // Stringer provides a canonicalized representation of node.
    func (client *bootstrapRESTClient) String() string {
    	return client.gridConn.String()
    }
    
    var binaryChecksum = getBinaryChecksum()
    
    func getBinaryChecksum() string {
    	mw := md5.New()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            } catch (NullPointerException e) {
                // Expected behavior when null chain is processed
                assertTrue(true);
            }
        }
    
        // Test chains order preservation
        public void test_chains_orderPreservation() {
            List<TestAuthenticationChain> chains = new ArrayList<>();
            for (int i = 0; i < 5; i++) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

                        .map(AdminPluginAction::beanToMap)
                        .collect(Collectors.toList()));
            }
            return result;
        }
    
        /**
         * Converts an Artifact object to a Map representation.
         *
         * @param artifact the artifact to convert
         * @return map containing artifact properties
         */
        public static Map<String, String> beanToMap(final Artifact artifact) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RangeMap.java

       * #asMapOfRanges()}.
       */
      @Override
      boolean equals(@Nullable Object o);
    
      /** Returns {@code asMapOfRanges().hashCode()}. */
      @Override
      int hashCode();
    
      /** Returns a readable string representation of this range map. */
      @Override
      String toString();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. cmd/api-headers.go

    	"strings"
    	"time"
    
    	"github.com/minio/minio-go/v7/pkg/tags"
    	"github.com/minio/minio/internal/crypto"
    	xhttp "github.com/minio/minio/internal/http"
    	xxml "github.com/minio/xxml"
    )
    
    // Returns a hexadecimal representation of time at the
    // time response is sent to the client.
    func mustGetRequestID(t time.Time) string {
    	return fmt.Sprintf("%X", t.UnixNano())
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            DummyResponse d = new DummyResponse();
            String s = d.toString();
            assertNotNull(s, "toString should not return null");
            assertTrue(s.contains("totalParameterCount="), "string representation contains totalParameterCount field");
        }
    
        /**
         * Verify that readParameterWordsWireFormat parses the SMB header
         * correctly and updates all relevant members.
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top