Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for singular2 (0.26 sec)

  1. docs/en/docs/tutorial/body-multiple-params.md

    ## Singular values in body
    
    The same way there is a `Query` and `Path` to define extra data for query and path parameters, **FastAPI** provides an equivalent `Body`.
    
    For example, extending the previous model, you could decide that you want to have another key `importance` in the same body, besides the `item` and `user`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        }
    
        private
        val logger = Logging.getLogger(ConfigurationCacheProblems::class.java)
    
        private
        fun Int.counter(singular: String, plural: String = "${singular}s"): String {
            return when (this) {
                0 -> "no $plural"
                1 -> "1 $singular"
                else -> "$this $plural"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. schema/naming.go

    func (ns NamingStrategy) SchemaName(table string) string {
    	table = strings.TrimPrefix(table, ns.TablePrefix)
    
    	if ns.SingularTable {
    		return ns.toSchemaName(table)
    	}
    	return ns.toSchemaName(inflection.Singular(table))
    }
    
    // ColumnName convert string to column name
    func (ns NamingStrategy) ColumnName(table, column string) string {
    	return ns.toDBName(column)
    }
    
    // JoinTableName convert string to join table name
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. schema/relationship.go

    		if _, ok := ownFieldsMap[joinFieldName]; ok {
    			if field.Name != relation.FieldSchema.Name {
    				joinFieldName = inflection.Singular(field.Name) + relField.Name
    			} else {
    				joinFieldName += "Reference"
    			}
    		}
    
    		if len(joinReferences) > idx {
    			joinFieldName = cases.Title(language.Und, cases.NoLower).String(joinReferences[idx])
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        StrAttr:$precision_config
      );
    
      let results = (outs
        Res<TF_NumberTensor, [{Singular values. The values are sorted in reverse order of magnitude, so
    s[..., 0] is the largest value, s[..., 1] is the second largest, etc.}]>:$s,
        Res<TF_NumberTensor, [{Left singular vectors.}]>:$u,
        Res<TF_NumberTensor, [{Right singular vectors.}]>:$v
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	// the second list call should try to get 2 more items from etcd
    	// but since there is only one item left, that is all we should get with no continueValue
    	// both read counters should be incremented for the singular calls they make in this case
    	out = &example.PodList{}
    	options = storage.ListOptions{
    		// ResourceVersion should be unset when setting continuation token.
    		ResourceVersion: "",
    		Predicate:       pred(2, cont),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // The first Operand is assumed to be a TensorType around a variant with a
      // single subtype (e.g. tensor<!tf_type.variant<tensor<2xi32>>>). We will
      // copy this type to the first result, and copy the singular variant subtype
      // to the second result (tensor<2xi32>).
      DCOMMENT_OP(op, "Inferring shape for TensorListPopBackOp.");
    
      auto src_list_handle_t =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. RELEASE.md

            performance. Default behavior is unchanged.
        *   Add an option `perturb_singular` to `tf.linalg.tridiagonal_solve` that
            allows solving linear systems with a numerically singular tridiagonal
            matrix, e.g. for use in inverse iteration.
        *   Added `tf.linalg.eigh_tridiagonal` that computes the eigenvalues of a
            Hermitian tridiagonal matrix.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top