Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for browsers (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            // http, ftp
            // nothing
    
            return appendQueryParameter(document, url);
        }
    
        /**
         * Updates file protocol based on user agent type.
         * Handles different browser-specific file protocol formats.
         *
         * @param url the file URL to update
         * @return the updated URL with appropriate file protocol
         */
        protected String updateFileProtocol(String url) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Joiner.java

      }
    
      /*
       * TODO: b/381289911 - Make the Iterator overload use StringJoiner (including Android or not)—or
       * some other optimization, given that StringJoiner can over-allocate:
       * https://bugs.openjdk.org/browse/JDK-8305774
       */
    
      // TODO: b/381289911 - Optimize MapJoiner similarly to Joiner (including Android or not).
    
      /**
       * Returns a string containing the string representation of each of {@code parts}, using the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 15:16:19 UTC 2025
    - 21K bytes
    - Viewed (0)
  3. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

          // On Android, HttpURLConnection is implemented by OkHttp v2. OkHttp
          // treats an incomplete response body as a ProtocolException.
        } catch (ioe: IOException) {
          // Change in https://bugs.openjdk.org/browse/JDK-8335135
          assertThat(ioe.message).isEqualTo("Premature EOF")
        }
      }
    
      private fun headersToList(response: MockResponse): List<String> {
        val headers = response.headers
        val size = headers.size
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 13:16:34 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

            helper = new SynchronizedHelper();
          }
        }
        ATOMIC_HELPER = helper;
    
        // Prevent rare disastrous classloading in first call to LockSupport.park.
        // See: https://bugs.openjdk.org/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

            }
          }
        }
        ATOMIC_HELPER = helper;
    
        // Prevent rare disastrous classloading in first call to LockSupport.park.
        // See: https://bugs.openjdk.org/browse/JDK-8074773
        @SuppressWarnings("unused")
        Class<?> ensureLoaded = LockSupport.class;
    
        // Log after all static init is finished; if an installed logger uses any Futures methods, it
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            }
            var moment = (typeof window != 'undefined' && typeof window.moment != 'undefined') ? window.moment : require('moment');
            module.exports = factory(moment, jQuery);
        } else {
            // Browser globals
            root.daterangepicker = factory(root.moment, root.jQuery);
        }
    }(typeof window !== 'undefined' ? window : this, function(moment, $) {
        var DateRangePicker = function(element, options, cb) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Joiner.java

      }
    
      /*
       * TODO: b/381289911 - Make the Iterator overload use StringJoiner (including Android or not)—or
       * some other optimization, given that StringJoiner can over-allocate:
       * https://bugs.openjdk.org/browse/JDK-8305774
       */
    
      // TODO: b/381289911 - Optimize MapJoiner similarly to Joiner (including Android or not).
    
      /**
       * Returns a string containing the string representation of each of {@code parts}, using the
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  8. android/pom.xml

                    </excludes>
                    <compilerArgs>
                      <!--
                          Make includes/excludes fully work:
                          https://issues.apache.org/jira/browse/MCOMPILER-174
                          (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                      -->
                      <arg>-sourcepath</arg>
                      <arg>doesnotexist</arg>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  9. pom.xml

                    </excludes>
                    <compilerArgs>
                      <!--
                          Make includes/excludes fully work:
                          https://issues.apache.org/jira/browse/MCOMPILER-174
                          (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                      -->
                      <arg>-sourcepath</arg>
                      <arg>doesnotexist</arg>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    query.timeout.logging=true
    # Maximum number of total hits to track in queries.
    query.track.total.hits=10000
    # Fields used for geo search queries.
    query.geo.fields=location
    # Parameter name for browser language in queries.
    query.browser.lang.parameter.name=browser_lang
    # Whether to replace term with prefix query.
    query.replace.term.with.prefix.query=true
    # Minimum hit count for OR search queries.
    query.orsearch.min.hit.count=-1
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top