Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Testing (0.16 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

        @Override
        public int getFlags () {
            return this.mechContext.getFlags();
        }
    
    
        @Override
        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            // prevent nesting
            return false;
        }
    
    
        /**
         * Determines what mechanism is being used for this context.
         * 
         * @return the Oid of the mechanism being used
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/FileLocationTest.java

            try ( DcerpcHandle h = DcerpcHandle
                    .getHandle(String.format("ncacn_np:%s[endpoint=%s,address=%s]", "testing", "\\pipe\\srvsvc", "1.2.3.4"), getContext()) ) {
    
                assertEquals("testing", h.getServer());
                assertEquals("1.2.3.4", h.getBinding().getOptions().get("address"));
            }
        }
    
    
        // #165
        @Test
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 13:16:07 GMT 2020
    - 23K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/Kerb5Authenticator.java

            super(domain, username, password);
            this.canFallback = true;
            this.subject = subject;
        }
    
    
        /**
         * Testing only: force fallback to NTLM
         * 
         * @param forceFallback
         *            the forceFallback to set
         */
        public void setForceFallback ( boolean forceFallback ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            return -1;
        }
    
        private List<EsAccessResult> getAccessResultList(final Consumer<SearchRequestBuilder> cb, final long cleanupTime) {
            if (logger.isDebugEnabled()) {
                logger.debug("Getting documents in IndexUpdater queue.");
            }
            final long execTime = systemHelper.getCurrentTimeAsLong();
            final List<EsAccessResult> arList = ((EsDataService) dataService).getAccessResultList(cb);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DfsImpl.java

                        return this._domains.map;
                    }
                }
            }
            catch ( IOException ioe ) {
                if ( log.isDebugEnabled() ) {
                    log.debug("getting trusted domains failed: " + tf.getCredentials().getUserDomain(), ioe);
                }
                CacheEntry<Map<String, CacheEntry<DfsReferralDataInternal>>> entry = new CacheEntry<>(tf.getConfig().getDfsTtl() * 10L);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                return new ApiResult(this);
            }
        }
    
        public static class ApiConfigResponse extends ApiResponse {
            protected Object setting;
    
            public ApiConfigResponse setting(final Object setting) {
                this.setting = setting;
                return this;
            }
    
            @Override
            public ApiResult result() {
                return new ApiResult(this);
            }
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTreeImpl.java

                    if ( preq.getPath() != null && preq.getPath().length() > 0 ) {
                        if ( log.isDebugEnabled() ) {
                            log.debug(String.format("Setting DFS request path from %s to %s", preq.getPath(), preq.getFullUNCPath()));
                        }
                        preq.setResolveInDfs(true);
                        preq.setPath(preq.getFullUNCPath());
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

         */
        void setReadOnly () throws CIFSException;
    
    
        /**
         * Set the attributes of this file. Attributes are composed into a
         * bitset by bitwise ORing the <tt>ATTR_*</tt> constants. Setting the
         * value returned by <tt>getAttributes</tt> will result in both files
         * having the same attributes.
         * 
         * @param attrs
         *            attribute flags
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.properties

    labels.wizard_start_button=Start Configuration
    labels.wizard_button_cancel=Cancel
    labels.wizard_crawling_config_title=Crawling Configuration
    labels.wizard_crawling_setting_title=Crawling Settings
    labels.wizard_crawling_config_name=Name
    labels.wizard_crawling_config_path=Crawling Path
    labels.wizard_button_register_again=Create again
    labels.wizard_button_register_next=Create and Next
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  10. src/main/resources/fess_label_en.properties

    labels.wizard_start_button=Start Configuration
    labels.wizard_button_cancel=Cancel
    labels.wizard_crawling_config_title=Crawling Configuration
    labels.wizard_crawling_setting_title=Crawling Settings
    labels.wizard_crawling_config_name=Name
    labels.wizard_crawling_config_path=Crawling Path
    labels.wizard_button_register_again=Create again
    labels.wizard_button_register_next=Create and Next
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
Back to top