Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 84 for min_length (0.39 seconds)

  1. tests/test_tutorial/test_body_nested_models/test_tutorial007.py

                                    "type": "string",
                                    "format": "uri",
                                    "maxLength": 2083,
                                    "minLength": 1,
                                },
                                "name": {
                                    "title": "Name",
                                    "type": "string",
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/AbstractMavenTransferListener.java

        private static final String ESC = "\u001B";
        private static final String ANSI_DARK_SET = ESC + "[90m";
        private static final String ANSI_DARK_RESET = ESC + "[0m";
    
        // CHECKSTYLE_OFF: LineLength
        /**
         * Formats file size with the associated <a href="https://en.wikipedia.org/wiki/Metric_prefix">SI</a> prefix
         * (GB, MB, kB) and using the patterns <code>#0.0</code> for numbers between 1 and 10
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Apr 22 22:13:51 GMT 2025
    - 9.2K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/checkstyle.xml

        suppress the check there but enforce it everywhere else. This prevents the list from getting longer even if it is
        unfair. -->
      <module name="LineLength">
        <property name="max" value="140" />
        <property name="ignorePattern" value="^ *\* *https?://[^ ]+$" />
      </module>
    
      <module name="TreeWalker">
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 12:48:46 GMT 2021
    - 6K bytes
    - Click Count (0)
  4. tests/test_application.py

                                    },
                                }
                            ],
                        }
                    },
                    "/path/param-minlength/{item_id}": {
                        "get": {
                            "responses": {
                                "200": {
                                    "description": "Successful Response",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 56.9K bytes
    - Click Count (0)
  5. compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/package-info.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    
    // CHECKSTYLE_OFF: LineLength
    /**
     * XML reader and writer classes for Maven POM, generated from <code>maven.mdo</code> model.
     * These classes use
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Mar 30 14:10:21 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/resources/eclipse.settings/org.eclipse.jdt.core.prefs

    org.eclipse.jdt.core.circularClasspath=warning
    org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
    org.eclipse.jdt.core.formatter.comment.line_length=140
    org.eclipse.jdt.core.formatter.lineSplit=140
    org.eclipse.jdt.core.formatter.tabulation.char=space
    org.eclipse.jdt.core.formatter.tabulation.size=4
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 16:53:28 GMT 2021
    - 1.7K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/primitives/UnsignedLongs.java

      }
    
      enum LexicographicalComparator implements Comparator<long[]> {
        INSTANCE;
    
        @Override
        public int compare(long[] left, long[] right) {
          int minLength = Math.min(left.length, right.length);
          for (int i = 0; i < minLength; i++) {
            if (left[i] != right[i]) {
              return UnsignedLongs.compare(left[i], right[i]);
            }
          }
          return left.length - right.length;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 05 22:13:21 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  8. tests/test_sub_callbacks.py

                                                {
                                                    "type": "string",
                                                    "format": "uri",
                                                    "minLength": 1,
                                                    "maxLength": 2083,
                                                },
                                                {"type": "null"},
                                            ],
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return "errors.blank_password";
            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            final Integer minLength = fessConfig.getPasswordMinLengthAsInteger();
            if (minLength != null && minLength > 0 && password.length() < minLength) {
                return "errors.password_length";
            }
    
            if (fessConfig.isPasswordRequireUppercase() && !containsUppercase(password)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/resources/checkstyle_suppressions.xml

      <suppress files="modules[/\\]lang-painless[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]painless[/\\]ContextExampleTests.java" checks="LineLength" />
    
      <!--
        Truly temporary suppressions suppression of snippets included in
        documentation that are so wide that they scroll.
      -->
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5.5K bytes
    - Click Count (0)
Back to Top