Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for additional (0.11 sec)

  1. src/main/resources/fess_config.properties

    # Additional highlighted fields for queries.
    query.additional.highlighted.fields=
    # Additional search fields for queries.
    query.additional.search.fields=
    # Additional facet fields for queries.
    query.additional.facet.fields=
    # Additional sort fields for queries.
    query.additional.sort.fields=
    # Additional analyzed fields for queries.
    query.additional.analyzed.fields=
    # Additional not-analyzed fields for queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. docs/bucket/notifications/README.md

    To configure this bucket notification, we need the ARN printed by MinIO in the previous step. Additional information about ARN is available [here](http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 84.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

        public void test_getAdditionalQuery() {
            assertNull(queryHelper.getAdditionalQuery());
        }
    
        public void test_setAdditionalQuery() {
            queryHelper.setAdditionalQuery("additional query");
            assertEquals("additional query", queryHelper.getAdditionalQuery());
        }
    
        public void test_setHighlightPrefix() {
            queryHelper.setHighlightPrefix("highlight_");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            String initial = "Initial content\n";
            try (OutputStream out = file.openOutputStream(false)) {
                out.write(initial.getBytes("UTF-8"));
            }
    
            // Append additional content
            String append = "Appended content\n";
            try (OutputStream out = file.openOutputStream(true)) { // true = append mode
                out.write(append.getBytes("UTF-8"));
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

            .Builder()
            .body(Buffer().write(ByteArray(Http2Connection.OKHTTP_CLIENT_WINDOW_SIZE + 1)))
            .build(),
        )
        server.enqueue(
          MockResponse(body = "abc"),
        )
        // Enqueue an additional response that show if we burnt a good prior response.
        server.enqueue(
          MockResponse(body = "XXX"),
        )
        val call1 = client.newCall(Request(server.url("/")))
        val response1 = call1.execute()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 73.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    logger.debug("Invalid Canonical Url(https->http): {} -> {}", url, canonicalUrl);
                }
                return false;
            }
            return true;
        }
    
        /**
         * Processes additional data including canonical URLs, content extraction, and metadata.
         *
         * @param dataMap the data map to populate
         * @param responseData the response data from crawling
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Iterators.java

       *     iterator, so users should cease making direct calls to it after calling this method.
       * @return a peeking iterator backed by that iterator. Apart from the additional {@link
       *     PeekingIterator#peek()} method, this iterator behaves exactly the same as {@code iterator}.
       */
      public static <T extends @Nullable Object> PeekingIterator<T> peekingIterator(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

       * the result set is constructed, the input set is merely copied. Only as the result set is
       * iterated are the individual subsets created. Each of these subsets occupies an additional O(n)
       * memory but only for as long as the user retains a reference to it. That is, the set returned by
       * {@code combinations} does not retain the individual subsets.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    		partsMetadata[index].Size = n
    		partsMetadata[index].Fresh = true
    		partsMetadata[index].ModTime = modTime
    		partsMetadata[index].Metadata = opts.UserDefined
    	}
    
    	// Set an additional header when data is inlined.
    	for index := range partsMetadata {
    		partsMetadata[index].SetInlineData()
    	}
    
    	for i := range len(onlineDisks) {
    		if onlineDisks[i] != nil && onlineDisks[i].IsOnline() {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Sep 07 16:13:09 UTC 2025
    - 80.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    }
    
    // getLatestObjectInfoWithIdx returns the objectInfo of the latest object from multiple pools (this function
    // is present in-case there were duplicate writes to both pools, this function also returns the
    // additional index where the latest object exists, that is used to start the GetObject stream.
    func (z *erasureServerPools) getLatestObjectInfoWithIdx(ctx context.Context, bucket, object string, opts ObjectOptions) (ObjectInfo, int, error) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.1K bytes
    - Viewed (0)
Back to top