Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 318 for Unknwon (0.05 sec)

  1. .typos.toml

    [files]
    extend-exclude = [".git/", "docs/", "CREDITS", "go.mod", "go.sum"]
    ignore-hidden = false
    
    [default]
    extend-ignore-re = [
        "Patrick Collison",
        "Copyright 2014 Unknwon",
        "[0-9A-Za-z/+=]{64}",
        "ZXJuZXQxDjAMBgNVBA-some-junk-Q4wDAYDVQQLEwVNaW5pbzEOMAwGA1UEAxMF",
        "eyJmb28iOiJiYXIifQ",
        "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.*",
        "MIIDBTCCAe2gAwIBAgIQWHw7h.*",
        'http\.Header\{"X-Amz-Server-Side-Encryptio":',
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Apr 03 06:45:06 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java

            case Smb2Constants.SMB2_0_INFO_QUOTA -> createQuotaInformation(infoClass);
            case Smb2Constants.SMB2_0_INFO_SECURITY -> createSecurityInformation(infoClass);
            default -> throw new SMBProtocolDecodingException("Unknwon information type " + infoType);
            };
        }
    
        /**
         * @param infoClass
         * @return
         * @throws SMBProtocolDecodingException
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

            assertTrue(exception.getMessage().contains("Unknown quota info class"));
        }
    
        @Test
        @DisplayName("Test readBytesWireFormat with unknown info type throws exception")
        void testReadBytesWireFormatUnknownInfoType() {
            response = new Smb2QueryInfoResponse(mockConfig, (byte) 99, // Unknown info type
                    (byte) 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/netbios/NbtExceptionTest.java

        }
    
        @Test
        @DisplayName("getErrorString for name service error with unknown code")
        void testNameServiceUnknown() {
            int unknown = 99;
            String expected = "ERR_NAM_SRVC/Unknown error code: 99";
            assertEquals(expected, NbtException.getErrorString(NbtException.ERR_NAM_SRVC, unknown));
        }
    
        @ParameterizedTest(name = "session error {1} -\\u003e {2}")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java

                    "Message should contain the corresponding fault message.");
        }
    
        /**
         * Test constructor DcerpcException(int error) with an unknown error code.
         */
        @Test
        void testConstructorWithError_unknownCode() {
            int errorCode = 0x12345678; // An arbitrary unknown error code
            DcerpcException exception = new DcerpcException(errorCode);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/DcerpcBindTest.java

                assertEquals("0x0004", getResultMessageMethod.invoke(null, 4), "Should return hex format for unknown code 4");
                assertEquals("0x00FF", getResultMessageMethod.invoke(null, 255), "Should return hex format for unknown code 255");
                assertEquals("0x1000", getResultMessageMethod.invoke(null, 4096), "Should return hex format for large unknown code");
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  7. src/main/resources/mail/testmail.dfmail

    /*
     [Test Mail]
    */
    subject: [FESS] Test Mail: /*pmb.hostname:orElse('Unknown')*/
    >>>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 12 13:52:58 UTC 2016
    - 146 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

            assertEquals(ArtifactType.CRAWLER, crawlerArtifact.getType());
    
            Artifact unknownArtifact = new Artifact("unknown-test", "1.0.0");
            assertEquals(ArtifactType.UNKNOWN, unknownArtifact.getType());
        }
    
        public void test_ArtifactType_getId() {
            assertEquals("fess-ds", ArtifactType.DATA_STORE.getId());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  9. cmd/postpolicyform_test.go

    		},
    		{
    			name:    "unknown key XAmzMetaName is error as it does not appear in policy",
    			fv:      defaultFormVals.Clone().Set(xhttp.AmzMetaName, "my-name"),
    			wantErr: `Each form field that you specify in a form must appear in the list of policy conditions. "X-Amz-Meta-Name" not specified in the policy.`,
    		},
    		{
    			name:    "unknown key XAmzChecksumAlgo is error as it does not appear in policy",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/netbios/NbtExceptionTest.java

                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.IMP_ERR, "ERR_NAM_SRVC/Unknown error code: 4"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.RFS_ERR, "ERR_NAM_SRVC/Unknown error code: 5"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.ACT_ERR, "ERR_NAM_SRVC/Unknown error code: 6"),
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top