Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 508 for y$ (0.24 sec)

  1. src/internal/types/testdata/check/stmt0.go

    	defer close(c)
    	defer len /* ERROR "defer discards result" */ (c)
    }
    
    func breaks() {
    	var x, y int
    
    	break /* ERROR "break" */
    	{
    		break /* ERROR "break" */
    	}
    	if x < y {
    		break /* ERROR "break" */
    	}
    
    	switch x {
    	case 0:
    		break
    	case 1:
    		if x == y {
    			break
    		}
    	default:
    		break
    		break
    	}
    
    	var z interface{}
    	switch z.(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    			check.representable(y, Typ[Uint])
    			if y.mode == invalid {
    				x.mode = invalid
    				return
    			}
    		}
    	} else {
    		// Check that RHS is otherwise at least of integer type.
    		switch {
    		case allInteger(y.typ):
    			if !allUnsigned(y.typ) && !check.verifyVersionf(y, go1_13, invalidOp+"signed shift count %s", y) {
    				x.mode = invalid
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. docs/es/docs/index.md

    * Cómo agregar **requisitos de validación** cómo `maximum_length` o `regex`.
    * Un sistema de **<abbr title="también conocido en inglés cómo: components, resources, providers, services, injectables">Dependency Injection</abbr>** poderoso y fácil de usar.
    * Seguridad y autenticación incluyendo soporte para **OAuth2** con **JWT tokens** y **HTTP Basic** auth.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/query-params.md

    {!../../../docs_src/query_params/tutorial002.py!}
    ```
    
    En este caso el parámetro de la función `q` será opcional y será `None` por defecto.
    
    !!! check "Revisa"
        También puedes notar que **FastAPI** es lo suficientemente inteligente para darse cuenta de que el parámetro de path `item_id` es un parámetro de path y que `q` no lo es, y por lo tanto es un parámetro de query.
    
    !!! note "Nota"
        FastAPI sabrá que `q` es opcional por el `= None`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/scalar.go

    }
    
    // MultiplyAdd sets s = x * y + z mod l, and returns s. It is equivalent to
    // using Multiply and then Add.
    func (s *Scalar) MultiplyAdd(x, y, z *Scalar) *Scalar {
    	// Make a copy of z in case it aliases s.
    	zCopy := new(Scalar).Set(z)
    	return s.Multiply(x, y).Add(s, zCopy)
    }
    
    // Add sets s = x + y mod l, and returns s.
    func (s *Scalar) Add(x, y *Scalar) *Scalar {
    	// s = 1 * x + y mod l
    	fiatScalarAdd(&s.s, &x.s, &y.s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

        ),
        $x,
        To
      )>;
    
    def LowerXdivyOp : BinaryXopyPat<
      (TF_XdivyOp $x, $y),
      (TF_DivOp $x, $y)>;
    
    def LowerXlog1pyOp : BinaryXopyPat<
      (TF_Xlog1pyOp $x, $y),
      (TF_MulOp $x, (TF_Log1pOp $y))>;
    
    def LowerXlogyOp : BinaryXopyPat<
      (TF_XlogyOp $x, $y),
      (TF_MulOp $x, (TF_LogOp $y))>;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. hack/ginkgo-e2e.sh

    GINKGO_PARALLEL=${GINKGO_PARALLEL:-n} # set to 'y' to run tests in parallel
    GINKGO_SILENCE_SKIPS=${GINKGO_SILENCE_SKIPS:-y} # set to 'n' to see S character for each skipped test
    GINKGO_FORCE_NEWLINES=${GINKGO_FORCE_NEWLINES:-$( if [ "${CI:-false}" = "true" ]; then echo "y"; else echo "n"; fi )} # set to 'y' to print a newline after each S or o character
    CLOUD_CONFIG=${CLOUD_CONFIG:-""}
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. utils/utils.go

    	for _, e := range elems {
    		if elem == e {
    			return true
    		}
    	}
    	return false
    }
    
    func AssertEqual(x, y interface{}) bool {
    	if reflect.DeepEqual(x, y) {
    		return true
    	}
    	if x == nil || y == nil {
    		return false
    	}
    
    	xval := reflect.ValueOf(x)
    	yval := reflect.ValueOf(y)
    	if xval.Kind() == reflect.Ptr && xval.IsNil() ||
    		yval.Kind() == reflect.Ptr && yval.IsNil() {
    		return false
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/image/gif/writer_test.go

    // calculated in the specified bounds.
    func averageDeltaBound(m0, m1 image.Image, b0, b1 image.Rectangle) int64 {
    	var sum, n int64
    	for y := b0.Min.Y; y < b0.Max.Y; y++ {
    		for x := b0.Min.X; x < b0.Max.X; x++ {
    			c0 := m0.At(x, y)
    			c1 := m1.At(x-b0.Min.X+b1.Min.X, y-b0.Min.Y+b1.Min.Y)
    			r0, g0, b0, _ := c0.RGBA()
    			r1, g1, b1, _ := c1.RGBA()
    			sum += delta(r0, r1)
    			sum += delta(g0, g1)
    			sum += delta(b0, b1)
    			n += 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64latelower.go

    		v.AddArg2(x, z)
    		return true
    	}
    	// match: (ISEL [a] (MOVDconst [0]) y z)
    	// result: (ISELZ [a^0x4] y z)
    	for {
    		a := auxIntToInt32(v.AuxInt)
    		if v_0.Op != OpPPC64MOVDconst || auxIntToInt64(v_0.AuxInt) != 0 {
    			break
    		}
    		y := v_1
    		z := v_2
    		v.reset(OpPPC64ISELZ)
    		v.AuxInt = int32ToAuxInt(a ^ 0x4)
    		v.AddArg2(y, z)
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top