Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,445 for fileId (0.03 sec)

  1. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            try {
                urlFilterService.delete(sessionId);
            } catch (final Exception e) {
                logger.warn("Failed to delete url filters: {}", sessionId, e);
            }
            try {
                urlQueueService.delete(sessionId);
            } catch (final Exception e) {
                logger.warn("Failed to delete url queues: {}", sessionId, e);
            }
            try {
                dataService.delete(sessionId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb2EchoResponseTest.java

                    int result = echoResponse.readBytesWireFormat(buffer, position);
                    assertEquals(0, result, "Failed at position " + position);
                }
            }
    
            @Test
            @DisplayName("Should not read beyond structure size field")
            void testReadBytesWireFormatBoundary() throws SMBProtocolDecodingException {
                byte[] buffer = new byte[10];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  3. schema/relationship_test.go

    	if err != nil {
    		t.Fatalf("failed to parse schema, got error %v", err)
    	}
    
    	if len(userSchema.Relationships.Relations) != 1 {
    		t.Fatalf("expects 1 relations, but got %v", len(userSchema.Relationships.Relations))
    	}
    
    	if createdByRel, ok := userSchema.Relationships.Relations["CreatedBy"]; ok {
    		if createdByRel.FieldSchema != userSchema {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Aug 18 11:44:52 UTC 2025
    - 26.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                for (int i = 0; i < KerberosConstants.CHECKSUM_SIZE; i++) {
                    if (plainDataChecksum[i] != data[i]) {
                        throw new GeneralSecurityException("Checksum failed while decrypting.");
                    }
                }
            }
    
            int decryptLength = plainData.length - KerberosConstants.CONFOUNDER_SIZE;
            decrypt = new byte[decryptLength];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. src/archive/tar/reader.go

    	// files. Internally, the tar format often uses fake "files" to add meta
    	// data that describes the next file. These meta data "files" should not
    	// normally be visible to the outside. As such, this loop iterates through
    	// one or more "header files" until it finds a "normal file".
    	format := FormatUSTAR | FormatPAX | FormatGNU
    	for {
    		// Discard the remainder of the file and any padding.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

                String escaped = KuromojiCSVUtil.quoteEscape(original);
                String[] parsed = KuromojiCSVUtil.parse(escaped);
                assertEquals("Roundtrip failed for: " + original, 1, parsed.length);
                assertEquals("Roundtrip failed for: " + original, original, parsed[0]);
            }
    
            // Test special cases where roundtrip doesn't work due to implementation quirks
            String input;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  7. docs/distributed/distributed-from-config-file.sh

    Anis Eleuch <******@****.***> 1719565609 +0100
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 28 09:06:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/archive/tar/testdata/pax-bad-mtime-file.tar

    Joe Tsai <******@****.***> 1472512232 -0700
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Aug 31 23:22:53 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  9. cmd/signature-v4-parser_test.go

    		// Test case with invalid credential field.
    		{
    			inputV4AuthStr:    signV4Algorithm + " Cred=,a,b",
    			expectedAuthField: signValues{},
    			expectedErrCode:   ErrMissingCredTag,
    		},
    		// Test case - 5.
    		// Auth field with missing "SigHeaderTag",ErrMissingSignHeadersTag expected.
    		// A valid credential is generated.
    		// Test case with invalid credential field.
    		{
    			inputV4AuthStr: signV4Algorithm +
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Feb 18 16:25:55 UTC 2025
    - 27.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java

            assertNull(exception.getCause());
        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
            String message = "Script execution failed";
            Exception cause = new RuntimeException("Underlying error");
            ScriptEngineException exception = new ScriptEngineException(message, cause);
    
            assertEquals(message, exception.getMessage());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top