Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 502 for configured (1.55 sec)

  1. src/test/java/jcifs/SmbTreeHandleTest.java

            verify(smbTreeHandle).close();
        }
    
        /**
         * Test for close() method throwing CIFSException.
         * Verifies that the method correctly throws a CIFSException when configured to do so.
         * @throws CIFSException
         */
        @Test
        void testClose_throwsCIFSException() throws CIFSException {
            doThrow(new CIFSException("Test Exception")).when(smbTreeHandle).close();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/DosFileFilterTest.java

            SmbException thrown = assertThrows(SmbException.class, () -> {
                dosFileFilter.accept(mockFile);
            });
    
            // and the exception should be the one we configured
            assertTrue(thrown == expectedException);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/package-info.java

     *   <li>{@link org.apache.maven.api.cli.extensions.CoreExtensions} - Manages Maven core extensions</li>
     * </ul>
     *
     * <p>Core extensions can be configured through {@code .mvn/extensions.xml} in the project base directory
     * to enhance Maven's capabilities during build execution.</p>
     *
     * @since 4.0.0
     */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Mar 04 14:17:18 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

    /**
     * Apply this rule to all tests. It adds additional checks for leaked resources and uncaught
     * exceptions.
     *
     * Use [newClient] as a factory for a OkHttpClient instances. These instances are specifically
     * configured for testing.
     */
    class OkHttpClientTestRule :
      BeforeEachCallback,
      AfterEachCallback {
      private val clientEventsList = mutableListOf<String>()
      private var testClient: OkHttpClient? = null
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 30 21:28:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/FakeTicker.java

    import java.util.concurrent.atomic.AtomicLong;
    import org.jspecify.annotations.NullMarked;
    
    /**
     * A Ticker whose value can be advanced programmatically in test.
     *
     * <p>The ticker can be configured so that the time is incremented whenever {@link #read} is called:
     * see {@link #setAutoIncrementStep}.
     *
     * <p>This class is thread-safe.
     *
     * @author Jige Yu
     * @since 10.0
     */
    @NullMarked
    @GwtCompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 15:16:19 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    : this.transportContext.getConfig().getWinsServers()[this.nbnsIndex];
        }
    
        /**
         * Checks if the given address is one of the configured WINS servers.
         *
         * @param svr the server address to check
         * @return whether the given address is a WINS server
         */
        protected boolean isWINS(final InetAddress svr) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

        /**
         * Handles document redirection requests.
         * Validates the document ID, logs click events if enabled, and redirects
         * to the target URL or serves file content directly if configured.
         *
         * @param form the go form containing document ID and tracking parameters
         * @return action response for redirection or content streaming
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

            }
    
            @Test
            @DisplayName("Should throw configured exception on decode")
            void testConfiguredExceptionOnDecode() {
                testResponse.setThrowOnDecode(true);
    
                assertThrows(SMBProtocolDecodingException.class, () -> testResponse.decode(testBuffer, 0, 10),
                        "Should throw configured exception");
            }
    
            @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.2K bytes
    - Viewed (0)
  9. cmd/kms-handlers_test.go

    			method: http.MethodGet,
    			path:   kmsKeyStatusPath,
    			query:  map[string]string{"key-id": "master-key-id"},
    		},
    	}
    
    	// Test when the GlobalKMS is not configured
    	for _, test := range tests {
    		t.Run(test.name+" not configured", func(t *testing.T) {
    			req := buildKMSRequest(t, test.method, test.path, "", "", test.query)
    			rec := httptest.NewRecorder()
    			adminTestBed.router.ServeHTTP(rec, req)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

         * Gets the cookie remember-me key for persistent login.
         * Currently returns empty as remember-me functionality is not enabled.
         *
         * @return an optional thing containing the remember-me key, or empty if not configured
         */
        @Override
        protected OptionalThing<String> getCookieRememberMeKey() {
            // example to use remember-me
            //return OptionalThing.of(fessConfig.getCookieRememberMeFessKey());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top