Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 618 for setting (1.48 sec)

  1. mvnw.cmd

            echo Downloading from: %WRAPPER_URL%
        )
    
        powershell -Command "&{"^
    		"$webclient = new-object System.Net.WebClient;"^
    		"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
    		"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
    		"}"^
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Oct 14 22:24:15 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/PercentEscaper.java

       *
       * @param safeChars a non-null string specifying additional safe characters for this escaper (the
       *     ranges 0..9, a..z and A..Z are always safe and should not be specified here)
       * @param plusForSpace true if ASCII space should be escaped to {@code +} rather than {@code %20}
       * @throws IllegalArgumentException if any of the parameters were invalid
       */
      public PercentEscaper(String safeChars, boolean plusForSpace) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            private final String username;
            private final String password;
    
            public TestLoginCredential(String username, String password) {
                this.username = username;
                this.password = password;
            }
    
            public String getUsername() {
                return username;
            }
    
            public String getPassword() {
                return password;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java

            @Test
            @DisplayName("Should ignore extended security setting")
            void testSetExtendedSecurity() {
                testMessage.setExtendedSecurity(true);
                testMessage.setExtendedSecurity(false);
                // Method is empty, just ensure no exception
            }
    
            @Test
            @DisplayName("Should ignore UID setting")
            void testSetUid() {
                testMessage.setUid(123);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/http/NtlmServletTest.java

        // A concrete implementation of the abstract NtlmServlet for testing purposes.
        private static class TestNtlmServlet extends NtlmServlet {
            private static final long serialVersionUID = 1L;
    
            @Override
            protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
                // Do nothing - just for testing
            }
    
            @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

        private static LogStream log = LogStream.getInstance();
    
        private String defaultDomain;
        private String domainController;
        private boolean loadBalance;
        private boolean enableBasic;
        private boolean insecureBasic;
        private String realm;
    
        @Override
        public void init(final FilterConfig filterConfig) throws ServletException {
            String name;
            int level;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

        public void test_startProcess_withBufferSizeAndCallback() {
            String sessionId = "test_session_buffer";
            List<String> cmdList = Arrays.asList("echo", "hello world");
            Consumer<ProcessBuilder> pbCall = pb -> {
                pb.redirectErrorStream(true);
            };
    
            List<String> outputs = new ArrayList<>();
            Consumer<String> outputCallback = output -> outputs.add(output);
    
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java

                testRequest.setRequestCredits(credits);
                assertEquals(credits, testRequest.getCredit());
            }
    
            @Test
            @DisplayName("setTid should set tree ID")
            void testSetTid() {
                int tid = 12345;
                testRequest.setTid(tid);
                assertEquals(tid, testRequest.getTreeId());
            }
        }
    
        @Nested
        @DisplayName("Async Operation Tests")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

                headers.put(name, value);
            }
    
            @Override
            public void setIntHeader(String name, int value) {
            }
    
            @Override
            public void addIntHeader(String name, int value) {
            }
    
            @Override
            public java.util.Collection<String> getHeaders(String name) {
                return java.util.Collections.emptyList();
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         */
        protected NtlmPasswordAuthenticator(String userInfo, String defDomain, String defUser, String defPassword) {
            this(userInfo, defDomain, defUser, defPassword, null);
        }
    
        /**
         * Create authenticator from URL userInfo string
         *
         * @param userInfo the userInfo string from URL
         * @param defDomain the default domain to use if not specified
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top