Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 354 for seas (0.01 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

        }
    
        /**
         * Sets the maximum buffer size for this transaction
         * @param maxBufferSize
         *            the maxBufferSize to set
         */
        public final void setMaxBufferSize(final int maxBufferSize) {
            this.maxBufferSize = maxBufferSize;
        }
    
        /**
         * Sets the maximum data count for this transaction
         * @param maxDataCount
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js.map

    BG,EAAmB5S,EAAAA,QAAK6N,GAAJ,WAAyC4E,EAAzC,MAE1BC,EAAgBzO,MAAK,SAAC4O,EAAGZ,GACvBjS,EAAAA,QAAEiS,GAAG7G,SAAS9F,SAAS,aAEzBqN,EAAoB1O,MAAK,SAAC4O,EAAGZ,GAC3BjS,EAAAA,QAAEiS,GAAG3M,SAAS,aAEhBsN,EAAiB3O,MAAK,SAAC4O,EAAGZ,GACxBjS,EAAAA,QAAEiS,GAAG3M,SAAS,UACdtF,EAAAA,QAAEiS,GAAGpQ,QAAQ,iBAAiBiR,QAAQ,aAAaxN,SAAS,gBAIhE2C,WAAA,SAAW8K,GACT,QAD2B,IAAlBA,IAAAA,GAAW,GAChB/S,EAAAA,QAAE,QAAQkC,SAAS+L,IAA6B,CAClD,IAAM+E,EAAehT,EAAAA,QAAEwI,QAAQxC,SACzBiN,EAAejT,EAAAA,QAAEqN,IAAkBrE,cACzChJ,EAAAA,QAAK0N,GAAJ,K...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 132.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

         *
         * @return A <code>byte[]</code> containing the LanManager response.
         */
        public byte[] getLMResponse() {
            return lmResponse;
        }
    
        /**
         * Sets the LanManager/LMv2 response for this message.
         *
         * @param lmResponse The LanManager response.
         */
        public void setLMResponse(final byte[] lmResponse) {
            this.lmResponse = lmResponse;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/SmbNegotiationResponse.java

         *
         * @return whether the server supports DFS
         */
        boolean isDFSSupported();
    
        /**
         * Sets up the given request with negotiated parameters.
         *
         * @param request the request to configure
         */
        void setupRequest(CommonServerMessageBlock request);
    
        /**
         * Sets up the given response with negotiated parameters.
         *
         * @param resp the response to configure
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

         *
         * @return true if this is a fragment, false otherwise
         */
        @Override
        public boolean isFragment() {
            return queryBuilder.isFragment();
        }
    
        /**
         * Sets the query name.
         *
         * @param queryName the query name to set
         * @return the query builder
         */
        @Override
        public QueryBuilder queryName(final String queryName) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/JobLogService.java

         */
        public void delete(final JobLog jobLog) {
    
            jobLogBhv.delete(jobLog, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
        }
    
        /**
         * Sets up the query conditions for retrieving job logs based on the pager configuration.
         * Configures filtering and ordering for the database query.
         *
         * @param cb the condition bean for building the query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java

        return Maps.newLinkedHashMapWithExpectedSize(expectedSize);
      }
    
      static <E extends @Nullable Object> Set<E> newHashSetWithExpectedSize(int expectedSize) {
        return Sets.newHashSetWithExpectedSize(expectedSize);
      }
    
      static <E extends @Nullable Object> Set<E> newConcurrentHashSet() {
        // GWT's ConcurrentHashMap is a wrapper around HashMap, but it rejects null keys, which matches
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jun 10 15:17:16 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  8. okhttp-testing-support/src/main/kotlin/okhttp3/SpecificHostSocketFactory.kt

     */
    class SpecificHostSocketFactory(
      val defaultAddress: InetSocketAddress?,
    ) : DelegatingSocketFactory(getDefault()) {
      private val hostMapping = mutableMapOf<InetAddress, InetSocketAddress>()
    
      /** Sets the [real] address for [requested].  */
      operator fun set(
        requested: InetAddress,
        real: InetSocketAddress,
      ) {
        hostMapping[requested] = real
      }
    
      override fun createSocket(): Socket =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            statsLogger.info(buf.toString());
        }
    
        /**
         * Sets the name of the logger used for statistics output.
         *
         * @param loggerName the logger name to use
         */
        public void setLoggerName(final String loggerName) {
            this.loggerName = loggerName;
        }
    
        /**
         * Sets the maximum number of statistics objects to cache.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java

        @Mock
        private Configuration mockConfig;
    
        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
        }
    
        @Test
        @DisplayName("Test constructor with non-zero asyncId sets async flag")
        void testConstructorWithNonZeroAsyncId() {
            // Given
            long mid = 12345L;
            long asyncId = 67890L;
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top