Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for getPart (0.03 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt

      override fun getLocalPort(): Int = delegate!!.localPort
    
      @Throws(IOException::class)
      override fun getOutputStream(): OutputStream = delegate!!.outputStream
    
      override fun getPort(): Int = delegate!!.port
    
      @Throws(SocketException::class)
      override fun getSoLinger(): Int = delegate!!.soLinger
    
      @Throws(SocketException::class)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertEquals(500L, qrList.getQueryTime());
            assertTrue(qrList.isPartialResults());
            assertEquals(facetResponse, qrList.getFacetResponse());
            assertEquals(0, qrList.getStart());
            assertEquals(10, qrList.getPageSize());
            assertEquals(0, qrList.getOffset());
    
            // Page info should be calculated (allRecordCount=100, pageSize=10 => 10 pages)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileAuthentication.java

            return convertEmptyToNull(password);
        }
    
        public void setPassword(String value) {
            registerModifiedProperty("password");
            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebAuthentication.java

            return convertEmptyToNull(password);
        }
    
        public void setPassword(String value) {
            registerModifiedProperty("password");
            this.password = value;
        }
    
        public Integer getPort() {
            checkSpecifiedProperty("port");
            return port;
        }
    
        public void setPort(Integer value) {
            registerModifiedProperty("port");
            this.port = value;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

        var http2ErrorCode: Int = mockResponse.getHttp2ErrorCode()
      }
    
      @Test @Disabled
      fun mockWebServer() {
        val mockWebServer = MockWebServer()
        var port: Int = mockWebServer.getPort()
        mockWebServer.setServerSocketFactory(ServerSocketFactory.getDefault())
        mockWebServer.setBodyLimit(0L)
        mockWebServer.setProtocolNegotiationEnabled(false)
        mockWebServer.setProtocols(listOf(Protocol.HTTP_1_1))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileAuthenticationDbm.java

            setupEpg(_epgMap, et -> ((FileAuthentication) et).getPassword(),
                    (et, vl) -> ((FileAuthentication) et).setPassword(DfTypeUtil.toString(vl)), "password");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getPort(),
                    (et, vl) -> ((FileAuthentication) et).setPort(DfTypeUtil.toInteger(vl)), "port");
            setupEpg(_epgMap, et -> ((FileAuthentication) et).getProtocolScheme(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            }
    
            @Override
            public HighlightInfo getHighlightInfo() {
                return parent.getHighlightInfo();
            }
    
            @Override
            public String getSort() {
                return parent.getSort();
            }
    
            @Override
            public int getStartPosition() {
                return startPosition;
            }
    
            @Override
            public int getOffset() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

         */
        public List<CrawlingInfoParam> getLastCrawlingInfoParamList(final String sessionId) {
            final CrawlingInfo crawlingInfo = getLast(sessionId);
            if (crawlingInfo == null) {
                return Collections.emptyList();
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/rank/fusion/RankFusionSearcherTest.java

                    return 10;
                }
    
                @Override
                public int getStartPosition() {
                    return 0;
                }
    
                @Override
                public String getSort() {
                    return null;
                }
    
                @Override
                public Map<String, String[]> getFields() {
                    return new HashMap<>();
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

         * @return The highlight info.
         */
        public abstract HighlightInfo getHighlightInfo();
    
        /**
         * Returns the sort.
         *
         * @return The sort.
         */
        public abstract String getSort();
    
        /**
         * Returns the start position.
         *
         * @return The start position.
         */
        public abstract int getStartPosition();
    
        /**
         * Returns the page size.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
Back to top