Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 567 for stripes (0.04 sec)

  1. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler.jsp

                                    <div class="row">
                                        <div class="col-sm-12">
                                            <table class="table table-bordered table-striped">
                                                <thead>
                                                <tr>
                                                    <th><la:message key="labels.scheduledjob_name"/></th>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java

         * Map storing related queries organized by virtual host key and search term.
         * The outer map key is the virtual host key, the inner map key is the search term
         * (in lowercase), and the value is an array of related query strings.
         */
        protected volatile Map<String, Map<String, String[]>> relatedQueryMap = Collections.emptyMap();
    
        /**
         * Default constructor for RelatedQueryHelper.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. generics.go

    			for _, vv := range vars {
    				subdb.Statement.Vars = append(subdb.Statement.Vars, vv)
    				bindvar := strings.Builder{}
    				subdb.BindVarTo(&bindvar, subdb.Statement, vv)
    				sql = strings.Replace(sql, bindvar.String(), "?", 1)
    			}
    
    			subdb.Statement.SQL.Reset()
    			subdb.Statement.Vars = stmt.Vars
    			if strings.Contains(sql, "@") {
    				clause.NamedExpr{SQL: sql, Vars: vars}.Build(subdb.Statement)
    			} else {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java

    import static com.google.common.collect.testing.SampleElements.Strings.AFTER_LAST;
    import static com.google.common.collect.testing.SampleElements.Strings.AFTER_LAST_2;
    import static com.google.common.collect.testing.SampleElements.Strings.BEFORE_FIRST;
    import static com.google.common.collect.testing.SampleElements.Strings.BEFORE_FIRST_2;
    import static java.lang.Math.max;
    import static java.util.Arrays.asList;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/StringUtil.java

            }
            return s1.indexOf(s2) >= 0;
        }
    
        /**
         * Returns whether two strings are equal. If both are null, returns <code>true</code>.
         *
         * @param target1
         *            the first string
         * @param target2
         *            the second string
         * @return true if the strings are equal, false otherwise
         */
        public static boolean equals(final String target1, final String target2) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/pathmap/admin_pathmap.jsp

                                    <div class="row top10">
                                        <div class="col-sm-12">
                                            <table class="table table-bordered table-striped">
                                                <thead>
                                                <tr>
                                                    <th><la:message key="labels.regex"/></th>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Mar 31 05:47:05 UTC 2020
    - 7.4K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionSpec.kt

          }
    
        fun cipherSuites(vararg cipherSuites: CipherSuite): Builder =
          apply {
            require(tls) { "no cipher suites for cleartext connections" }
            val strings = cipherSuites.map { it.javaName }.toTypedArray()
            return cipherSuites(*strings)
          }
    
        fun cipherSuites(vararg cipherSuites: String) =
          apply {
            require(tls) { "no cipher suites for cleartext connections" }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/pac/PacLogonInfo.java

                this.pwdLastChangeTime = pacStream.readFiletime();
                this.pwdCanChangeTime = pacStream.readFiletime();
                this.pwdMustChangeTime = pacStream.readFiletime();
    
                // User related strings as UnicodeStrings
                final PacUnicodeString userNameString = pacStream.readUnicodeString();
                final PacUnicodeString userDisplayNameString = pacStream.readUnicodeString();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

        private static final Logger logger = LogManager.getLogger(FacetQueryView.class);
    
        /** Title for this facet query view */
        protected String title;
    
        /** Map of display keys to their corresponding query strings */
        protected Map<String, String> queryMap = new LinkedHashMap<>();
    
        /**
         * Default constructor for FacetQueryView.
         */
        public FacetQueryView() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  10. docs/nl/docs/environment-variables.md

    * `/bin`
    * `/usr/sbin`
    * `/sbin`
    
    ////
    
    //// tab | Windows
    
    ```plaintext
    C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32
    ```
    
    Dit betekent dat het systeem naar programma's zoekt in de mappen:
    
    * `C:\Program Files\Python312\Scripts`
    * `C:\Program Files\Python312`
    * `C:\Windows\System32`
    
    ////
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 20 11:13:32 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top