Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 341 - 350 of 1,217 for number1 (0.46 seconds)

  1. android/guava/src/com/google/common/graph/Traverser.java

       *       notes on element objects</a> for more information.)
       *   <li>While traversing, the traverser will use <i>O(n)</i> space (where <i>n</i> is the number
       *       of nodes that have thus far been visited), plus <i>O(H)</i> space (where <i>H</i> is the
       *       number of nodes that have been seen but not yet visited, that is, the "horizon").
       * </ul>
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/path-params-numeric-validations.md

    ## 數值驗證:大於或等於 { #number-validations-greater-than-or-equal }
    
    使用 `Query` 和 `Path`(以及你之後會看到的其他類別)可以宣告數值限制。
    
    這裡用 `ge=1`,代表 `item_id` 必須是「大於(`g`reater)或等於(`e`qual)」`1` 的整數。
    
    {* ../../docs_src/path_params_numeric_validations/tutorial004_an_py310.py hl[10] *}
    
    ## 數值驗證:大於與小於或等於 { #number-validations-greater-than-and-less-than-or-equal }
    
    同樣也適用於:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  3. docs/pt/docs/deployment/docker.md

    ## Replicação - Número de Processos { #replication-number-of-processes }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  4. src/main/resources/fess_message_pt_BR.properties

    constraints.Required.message = {item} é obrigatório.
    constraints.TypeInteger.message = {item} deve ser um número.
    constraints.TypeLong.message = {item} deve ser um número.
    constraints.TypeFloat.message = {item} deve ser um número.
    constraints.TypeDouble.message = {item} deve ser um número.
    constraints.TypeAny.message = {item} não pode ser convertido para {propertyType}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  5. tests/helper_test.go

    		if user.Account.Number != "" {
    			if !user.Account.UserID.Valid {
    				t.Errorf("Account's foreign key should be saved")
    			} else {
    				var account Account
    				db(unscoped).First(&account, "user_id = ?", user.ID)
    				AssertObjEqual(t, account, user.Account, "ID", "CreatedAt", "UpdatedAt", "DeletedAt", "UserID",
    					"Number")
    			}
    		}
    	})
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:27:38 GMT 2026
    - 8.6K bytes
    - Click Count (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionPool.kt

        connectionListener = ConnectionListener.NONE,
      )
    
      constructor() : this(5, 5, TimeUnit.MINUTES)
    
      /** Returns the number of idle connections in the pool. */
      fun idleConnectionCount(): Int = delegate.idleConnectionCount()
    
      /** Returns total number of connections in the pool. */
      fun connectionCount(): Int = delegate.connectionCount()
    
      internal val connectionListener: ConnectionListener
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 21:55:03 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  7. tests/test_tutorial/test_body_multiple_params/test_tutorial005.py

                                },
                                "price": {"title": "Price", "type": "number"},
                                "tax": {
                                    "title": "Tax",
                                    "anyOf": [{"type": "number"}, {"type": "null"}],
                                },
                            },
                            "required": [
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java

                        entity.put(fessConfig.getIndexFieldId(), newId);
                        entity.remove(fessConfig.getIndexFieldVersion());
                        final Number seqNo = (Number) entity.remove(fessConfig.getIndexFieldSeqNo());
                        final Number primaryTerm = (Number) entity.remove(fessConfig.getIndexFieldPrimaryTerm());
                        if (seqNo != null && primaryTerm != null && oldId != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.2K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                        <div class="form-inline col-sm-9">
                                            <la:errors property="depth"/>
                                            <input type="number" name="depth" id="depth"
                                                   value="${f:h(depth)}" class="form-control"
                                                   min="0" max="10000">
                                        </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  10. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         * @return number of bytes written
         */
        protected abstract int writeBytesWireFormat(byte[] dst, int dstIndex);
    
        /**
         * Reads the message body from the wire format.
         *
         * @param buffer the buffer to read from
         * @param bufferIndex the starting position in the buffer
         * @return number of bytes read
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 24K bytes
    - Click Count (0)
Back to Top