- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 458 for Custom (0.04 sec)
-
src/test/java/jcifs/http/NtlmHttpFilterTest.java
// Test skip authentication mode when(request.getHeader("Authorization")).thenReturn(null); when(httpSession.getAttribute("NtlmHttpAuth")).thenReturn(null); // Create a custom filter that overrides negotiate to test skipAuthentication NtlmHttpFilter customFilter = new NtlmHttpFilter() { @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
cmd/endpoint-ellipses_test.go
true, }, { []string{"http://host{0...5}/data{1...28}"}, []uint64{168}, [][]uint64{{12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12}}, 12, true, }, // Incorrect custom set drive count. { []string{"http://host{0...5}/data{1...28}"}, []uint64{168}, nil, 10, false, }, // Failure not divisible number of disks. {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
/** * Create path validator with default settings */ public PathValidator() { this(260, 255, true, false); } /** * Create path validator with custom settings * * @param maxPathLength maximum total path length * @param maxComponentLength maximum length for path components * @param allowUncPaths whether to allow UNC paths
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/BenchmarkHelpers.java
return ImmutableMap.copyOf(map); } }, MapMakerStrongKeysStrongValues { @Override public <K extends Comparable<K>, V> Map<K, V> create(Map<K, V> map) { // We use a "custom" equivalence to force MapMaker to make a MapMakerInternalMap. ConcurrentMap<K, V> newMap = new MapMaker().keyEquivalence(Equivalence.equals()).makeMap(); checkState(newMap instanceof MapMakerInternalMap);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DynamicProperties.java
* ensures that the properties are always up-to-date. * * <p>Key Features: * <ul> * <li>Automatically reloads properties if the file is modified.</li> * <li>Supports custom check intervals for file modification checks.</li> * <li>Provides synchronized methods for loading and storing properties.</li> * <li>Extends {@link Properties} and overrides its methods to work with dynamic properties.</li>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
* the subject to set */ protected void setSubject(Subject subject) { this.subject = subject; } @Override public void refresh() throws CIFSException { // custom Kerb5Authenticators need to override this method for support throw new SmbUnsupportedOperationException("Refreshing credentials is not supported by this authenticator"); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
/** * Returns the path to the pom file for this project. * A project is usually read from a file named {@code pom.xml}, * which contains the {@linkplain #getModel() model} in an XML form. * When a custom {@code org.apache.maven.api.spi.ModelParser} is used, * the path may point to a non XML file. * <p> * The POM path is also used to define the {@linkplain #getBasedir() base directory} * of the project.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Feb 27 11:07:03 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java
String value = "12345|role1;role2;role3"; roleQueryHelper.parseRoleSet(value, false, roleSet); // The implementation may parse roles differently with custom separators assertTrue(roleSet.size() >= 0); } public void test_parseRoleSet_decryptionFailure() { final RoleQueryHelper roleQueryHelper = new RoleQueryHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.5K bytes - Viewed (0) -
docs/em/docs/tutorial/bigger-applications.md
```Python hl_lines="30-31" title="app/routers/items.py" {!../../docs_src/bigger_applications/app/routers/items.py!} ``` /// tip ๐ ๐ โก ๐ ๏ธ ๐ โ๏ธ ๐ ๐: `["items", "custom"]`. & โซ๏ธ ๐ โ๏ธ ๐ฏโโ๏ธ ๐จ ๐งพ, 1๏ธโฃ `404` & 1๏ธโฃ `403`. /// ## ๐ `FastAPI` ๐, โก๏ธ ๐ ๐น `app/main.py`. ๐ฅ ๐โ ๐ ๐ & โ๏ธ ๐ `FastAPI`. ๐ ๐ ๐ ๐ ๐ ๐ธ ๐ ๐ ๐ ๐ฏโโ๏ธ.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun May 11 13:37:26 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
byte[] buffer = new byte[] { 0x03, 0x00, // 3 ciphers 0x01, 0x00, // AES128_CCM 0x02, 0x00, // AES128_GCM 0x03, 0x00 // Custom cipher }; // Act int decodedSize = context.decode(buffer, 0, buffer.length); // Assert assertEquals(8, decodedSize);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0)