Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for outMap (0.58 sec)

  1. docs/pt/docs/tutorial/first-steps.md

        Em nosso caso, este decorador informa ao **FastAPI** que a função abaixo corresponde a **rota** `/` com uma **operação** `get`.
    
        É o "**decorador de rota**".
    
    Você também pode usar as outras operações:
    
    * `@app.post()`
    * `@app.put()`
    * `@app.delete()`
    
    E os mais exóticos:
    
    * `@app.options()`
    * `@app.head()`
    * `@app.patch()`
    * `@app.trace()`
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    			// Since we've encountered an unknown field, fallback to unstructured equality checking.
    			ouMap, ok := other.(*unstructuredMap)
    			if !ok {
    				// The compiler ensures equality is against the same type of object, so this should be unreachable
    				return types.MaybeNoSuchOverloadErr(other)
    			}
    			if oValue, ok := ouMap.value[key]; ok {
    				if !equality.Semantic.DeepEqual(value, oValue) {
    					return types.False
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. docs/pt/docs/features.md

    * Suporte para sistemas de autenticação complexos, **conexões com banco de dados** etc.
    * **Sem comprometer** os bancos de dados, _frontends_ etc. Mas fácil integração com todos eles.
    
    ### "Plug-ins" ilimitados
    
    Ou, de outra forma, sem a necessidade deles, importe e use o código que precisar.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

      rewriter.setInsertionPointAfter(gemm_style_op);
    
      Operation* next_op = FindUserOfType<>(gemm_style_op);
    
      // If activation exists, omit clipping op.
      // Since out_scale and out_zp are computed based on clipped range,
      // explicit activation clipping op is not required.
      if (isa<AddOp>(next_op) && gemm_style_op->hasOneUse()) {
        // bias fusion
        CreateAndReturnQuantizedBiasPattern(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.presentObj.?presentStr.optMap(v, v == 'value').hasValue()",
    				"self.?absentObj.?absentStr == optional.none()",
    				"self.?absentObj.?absentStr.or(optional.of('nope')) == optional.of('nope')",
    				"self.?absentObj.?absentStr.orValue('nope') == 'nope'",
    				"self.?absentObj.?absentStr.hasValue() == false",
    				"self.?absentObj.?absentStr.optMap(v, v == 'value').hasValue() == false",
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		}
    	}
    	if rr.Cond != "" {
    		rr.add(breakf("!(%s)", rr.Cond))
    	}
    
    	// Rule matches. Generate result.
    	outop, _, auxint, aux, t := extract(rr.Result) // remove parens, then split
    	blockName, outdata := getBlockInfo(outop, arch)
    	if len(t) < outdata.controls {
    		log.Fatalf("incorrect number of output arguments in %s, got %v wanted at least %v", rule, len(s), outdata.controls)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"optional.of('a').or(optional.of('a')).hasValue()":    2, // or() is short-circuited
    				"optional.none().or(optional.of('a')).hasValue()":     3,
    				"optional.of('a').optMap(v, v == 'value').hasValue()": 8,
    				"self.obj.?field == optional.of('a')":                 5,
    				"self.obj.?absentField == optional.none()":            4,
    				"self.obj.?field.orValue('v') == 'a'":                 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  8. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.BinaryData, &out.BinaryData
    		*out = make(map[string][]byte, len(*in))
    		for key, val := range *in {
    			var outVal []byte
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make([]byte, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.BinaryData, &out.BinaryData
    		*out = make(map[string][]byte, len(*in))
    		for key, val := range *in {
    			var outVal []byte
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make([]byte, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // quantize_conv_with_bias_dynamic_fn, omitting stablehlo.maximum.
    // This is because activation clipping which includes 0.0f can be simply
    // omitted from the graph as the lifted function's out_scale and out_zp are
    // already calculated based on the clipped distribution.
    // Note that the resulting scale and zero point should be calculated based on
    // clipped range [0, r_max].
    
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
Back to top