Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for Unknwon (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

        }
    
        @Test
        @DisplayName("Should get unknown name")
        void testGetUnknownName() {
            // When
            NetbiosName unknownName = nameServiceClient.getUnknownName();
    
            // Then
            assertNotNull(unknownName, "Unknown name should not be null");
            assertEquals("0.0.0.0", unknownName.getName(), "Unknown name should be 0.0.0.0");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbOperationException.java

                    true), SERVICE_UNAVAILABLE("Service temporarily unavailable", ErrorCategory.TRANSIENT, true),
    
            // Generic errors
            UNKNOWN_ERROR("Unknown error", ErrorCategory.UNKNOWN, false), INTERNAL_ERROR("Internal error", ErrorCategory.UNKNOWN, false);
    
            private final String description;
            private final ErrorCategory category;
            private final boolean retryable;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/toolchain/DefaultToolchainManagerTest.java

            when(session.getRequest()).thenReturn(executionRequest);
            Session sessionv4 = mock(Session.class);
            when(session.getSession()).thenReturn(sessionv4);
            when(sessionv4.getToolchains()).thenReturn(toolchainModels);
    
            List<Toolchain> toolchains = toolchainManager.getToolchains(session, "unknown", null);
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 11K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/BoostQueryCommandTest.java

                fail("Should have thrown InvalidQueryException");
            } catch (InvalidQueryException e) {
                // Expected exception for unknown query type
                assertTrue(e.getMessage().contains("Unknown q:"));
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17K bytes
    - Viewed (0)
  9. cmd/postpolicyform.go

    					Valid: true,
    				}
    			default:
    				// Condition should be valid.
    				return parsedPolicy, fmt.Errorf("Unknown type %s of conditional field value %s found in POST policy form",
    					reflect.TypeOf(condt).String(), condt)
    			}
    		default:
    			return parsedPolicy, fmt.Errorf("Unknown field %s of type %s found in POST policy form",
    				condt, reflect.TypeOf(condt).String())
    		}
    	}
    	return parsedPolicy, nil
    }
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java

                "0, " + SmbConstants.TYPE_SHARE, // Standard share
                "2, " + SmbConstants.TYPE_SHARE, // Unknown type defaults to share
                "4, " + SmbConstants.TYPE_SHARE, // Unknown type defaults to share
                "100, " + SmbConstants.TYPE_SHARE // Unknown type defaults to share
        })
        void testGetTypeWithDifferentShareTypes(int inputType, int expectedType) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top