Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 907 for iets (0.02 sec)

  1. src/main/resources/fess_indices/fess/nl/stemmer_override.txt

    fiets=>fiets
    bromfiets=>bromfiets
    ei=>eier
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Jul 17 13:47:36 UTC 2018
    - 56 bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        assertThat(Ints.indexOf(ARRAY234, ARRAY1)).isEqualTo(-1);
        assertThat(Ints.indexOf(ARRAY1, ARRAY234)).isEqualTo(-1);
        assertThat(Ints.indexOf(ARRAY1, ARRAY1)).isEqualTo(0);
        assertThat(Ints.indexOf(ARRAY234, ARRAY234)).isEqualTo(0);
        assertThat(Ints.indexOf(ARRAY234, new int[] {(int) 2, (int) 3})).isEqualTo(0);
        assertThat(Ints.indexOf(ARRAY234, new int[] {(int) 3, (int) 4})).isEqualTo(1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple3.java

            this.value3 = value3;
        }
    
        /**
         * Returns the first value.
         *
         * @return The first value
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * Sets the first value.
         *
         * @param value1
         *            The first value
         */
        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/QueryCommand.java

        }
    
        /**
         * Gets the query field configuration.
         * @return The query field configuration instance.
         */
        protected QueryFieldConfig getQueryFieldConfig() {
            return ComponentUtil.getQueryFieldConfig();
        }
    
        /**
         * Gets the query processor instance.
         * @return The query processor instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return query;
            }
    
            /**
             * Gets the suggest fields for the request.
             * @return Array of field names to search in for suggestions
             */
            protected String[] getSuggestFields() {
                return fields;
            }
    
            /**
             * Gets the maximum number of suggestions to return.
             * @return The maximum number of suggestions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Sets the maximum size of the result document IDs cache.
         *
         * @param resultDocIdsCacheSize the maximum number of entries in the cache
         */
        public void setResultDocIdsCacheSize(final int resultDocIdsCacheSize) {
            this.resultDocIdsCacheSize = resultDocIdsCacheSize;
        }
    
        /**
         * Sets the name of the user identification cookie.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

     *       thread, an RPC, etc. The {@code Future} is also "completed" if it fails "early" -- for
     *       example, if the deadline expires on a {@code Future} returned from {@link
     *       Futures#withTimeout} while the {@code Future} it wraps continues its underlying work. So
     *       beware: <i>Your {@code AsyncCallable} should not complete its {@code Future} until it is
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/SetsTest.java

        assertEquals(ImmutableSortedSet.of(4), Sets.subSet(set, Range.open(2, 6)));
        assertEquals(ImmutableSortedSet.of(4, 6), Sets.subSet(set, Range.open(3, 7)));
        assertEquals(empty, Sets.subSet(set, Range.open(20, 30)));
    
        assertEquals(set, Sets.subSet(set, Range.openClosed(0, 12)));
        assertEquals(ImmutableSortedSet.of(2, 4), Sets.subSet(set, Range.openClosed(0, 4)));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            /**
             * Returns the label.
             *
             * @return The label.
             */
            public String getLabel() {
                return label;
            }
    
            /**
             * Sets the label.
             *
             * @param label The label.
             */
            public void setLabel(final String label) {
                this.label = label;
            }
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
  10. README.md

    * HTTP/1.1 - [RFC 9112](https://datatracker.ietf.org/doc/html/rfc9112)
    * HTTP/2 - [RFC 9113](https://datatracker.ietf.org/doc/html/rfc9113)
    * Websockets - [RFC 6455](https://datatracker.ietf.org/doc/html/rfc6455)
    * SSE - [Server-sent events](https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events)
    
    Where the spec is ambiguous, OkHttp follows modern user agents such as popular Browsers or common HTTP Libraries.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 07:33:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top