Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 263 for hatten (1.83 sec)

  1. android/guava-testlib/test/com/google/common/testing/anotherpackage/SomeClassThatDoesNotUseNullable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.testing.anotherpackage;
    
    /** Does not check null, but should not matter since it's in a different package. */
    @SuppressWarnings("unused") // For use by NullPointerTester
    public class SomeClassThatDoesNotUseNullable {
    
      void packagePrivateButDoesNotCheckNull(String s) {}
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        /** Pattern for detecting reserved characters in Lucene field queries. */
        public static final Pattern LUCENE_FIELD_RESERVED_PATTERN = Pattern.compile("([+\\-!\\(\\){}\\[\\]^\"~\\\\:\\p{Zs}]|(&&)|(\\|\\|))"); // "*", "?",
    
        /** Pattern for detecting reserved characters in Lucene range field queries. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

         * @throws DictionaryException if the input stream cannot be parsed.
         */
        protected void reload(final StemmerOverrideUpdater updater, final InputStream in) {
            final Pattern parsePattern = Pattern.compile("(.*)\\s*=>\\s*(.*)\\s*$");
            final List<StemmerOverrideItem> itemList = new ArrayList<>();
            try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

     * from files that match the pattern "synonym.*\\.txt".
     */
    public class SynonymCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(SynonymCreator.class);
    
        /**
         * Constructs a new creator for synonym dictionaries.
         * It sets the file pattern to match files starting with "synonym"
         * and ending with ".txt".
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        /** Search/filter parameter for duplicate host configuration ID. */
        public String id;
    
        /** Search/filter parameter for regular hostname pattern. */
        public String regularName;
    
        /** Search/filter parameter for duplicate hostname pattern. */
        public String duplicateHostName;
    
        /** Search/filter parameter for duplicate host sort order. */
        public String sortOrder;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            }
        }
    
        private static class PatternWebApiManager implements WebApiManager {
            private final String pattern;
    
            public PatternWebApiManager(String pattern) {
                this.pattern = pattern;
            }
    
            @Override
            public boolean matches(HttpServletRequest request) {
                if (request == null || request.getRequestURI() == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/ServerTruncatesRequestTest.kt

        // Confirm that the connection pool was not corrupted by making another call.
        makeSimpleCall()
      }
    
      /**
       * If the server returns a full response, it doesn't really matter if the HTTP/2 stream is reset.
       * Attempts to write the request body fails fast.
       */
      @Test
      fun serverTruncatesRequestHttp2OnDuplexRequest() {
        enableProtocol(Protocol.HTTP_2)
    
        server.enqueue(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/FileBackedOutputStreamAndroidIncompatibleTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Android-incompatible tests for {@link FileBackedOutputStream}.
     *
     * @author Chris Nokleberg
     */
    @AndroidIncompatible // Finalization probably just doesn't happen fast enough?
    @NullUnmarked
    public class FileBackedOutputStreamAndroidIncompatibleTest extends IoTestCase {
    
      public void testFinalizeDeletesFile() throws Exception {
        byte[] data = newPreFilledByteArray(100);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/RegularImmutableMap.java

          int n, @Nullable Entry<K, V>[] entryArray, boolean throwIfDuplicateKeys) {
        checkPositionIndex(n, entryArray.length);
        if (n == 0) {
          @SuppressWarnings("unchecked") // it has no entries so the type variables don't matter
          ImmutableMap<K, V> empty = (ImmutableMap<K, V>) EMPTY;
          return empty;
        }
        try {
          return fromEntryArrayCheckingBucketOverflow(n, entryArray, throwIfDuplicateKeys);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. native-image-tests/src/test/resources/META-INF/native-image/okhttp/nit/resource-config.json

    {
      "resources": [
        {"pattern": "web-platform-test-urltestdata.txt"}
      ]
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Dec 21 08:56:29 UTC 2024
    - 78 bytes
    - Viewed (0)
Back to top