Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,773 for param2 (0.05 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractorTest.java

            params.put(ExtractData.RESOURCE_NAME_KEY, resourceName);
            assertEquals("password", pdfExtractor.getPassword(params));
    
            url = "http://test.com/fuga.pdf";
            resourceName = null;
            params.put(ExtractData.URL, url);
            params.put(ExtractData.RESOURCE_NAME_KEY, resourceName);
            assertNull(pdfExtractor.getPassword(params));
    
            url = null;
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

        public void test_getText_ooow() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test.odt");
            Map<String, String> params = new HashMap<String, String>();
            params.put("resourceName", "test.odt");
            ExtractData extractData = jodExtractor.getText(in, params);
            String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
            logger.info(content);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Request.kt

        open fun <T> tag(
          type: Class<in T>,
          tag: T?,
        ) = commonTag(type.kotlin, tag)
    
        /**
         * Override the [Request.url] for caching, if it is either polluted with
         * transient query params, or has a canonical URL possibly for a CDN.
         *
         * Note that POST requests will not be sent to the server if this URL is set
         * and matches a cached response.
         */
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. .teamcity/jdks.yaml

    version: "v1"
    jdks:
      - params:
          - "linux.java7.oracle.64bit"
        os: "linux"
        arch: "amd64"
        vendor: "oracle"
        version: "7u80"
        sha256: "bad9a731639655118740bee119139c1ed019737ec802a630dd7ad7aab4309623"
      - params:
          - "linux.java8.openjdk.64bit"
          - "linux.java8.oracle.64bit"
        os: "linux"
        arch: "amd64"
        vendor: "oracle"
        version: "8u401"
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 29 15:51:20 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                request.setAttribute(Constants.REQUEST_LANGUAGES, params.getLanguages());
                request.setAttribute(Constants.REQUEST_QUERIES, params.getQuery());
            });
    
            final int pageSize = params.getPageSize();
            final String query = ComponentUtil.getQueryStringBuilder().params(params).sortField(params.getSort()).build();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/Hexdump.java

         * that the result is <code>size</code> digits.
         * 
         * @param val
         * @param size
         * @return hex string
         */
        public static String toHexString ( int val, int size ) {
            char[] c = new char[size];
            toHexChars(val, c, 0, size);
            return new String(c);
        }
    
    
        /**
         * @param val
         * @param size
         * @return hex string
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  7. docs_src/dependency_testing/tutorial001_py310.py

    
    @app.get("/items/")
    async def read_items(commons: dict = Depends(common_parameters)):
        return {"message": "Hello Items!", "params": commons}
    
    
    @app.get("/users/")
    async def read_users(commons: dict = Depends(common_parameters)):
        return {"message": "Hello Users!", "params": commons}
    
    
    client = TestClient(app)
    
    
    async def override_dependency(q: str | None = None):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/query/StoredLtrQueryBuilder.java

            this.storeName = storeName;
            return this;
        }
    
        public Map<String, Object> params() {
            return params;
        }
    
        public StoredLtrQueryBuilder params(final Map<String, Object> params) {
            this.params = Objects.requireNonNull(params);
            return this;
        }
    
        public List<String> activeFeatures() {
            return activeFeatures;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    params.put("ID", e.getId());
                    params.put("Query ID", e.getQueryId());
                    params.put("Doc ID", e.getDocId());
                    params.put("User Info ID", e.getUserInfoId());
                    params.put("URL", e.getUrl());
                    params.put("Created Time", FessFunctions.formatDate(e.getCreatedAt()));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

       *
       * @param i the index
       * @param newValue the new value
       */
      public final void lazySet(int i, double newValue) {
        long next = doubleToRawLongBits(newValue);
        longs.lazySet(i, next);
      }
    
      /**
       * Atomically sets the element at position {@code i} to the given value and returns the old value.
       *
       * @param i the index
       * @param newValue the new value
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jun 14 17:55:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top