Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for retract (0.29 sec)

  1. fastapi/param_functions.py

                """
            ),
        ] = _Unset,
        alias: Annotated[
            Optional[str],
            Doc(
                """
                An alternative name for the parameter field.
    
                This will be used to extract the data and for the generated OpenAPI.
                It is particularly useful when you can't use the name you want because it
                is a Python reserved keyword or similar.
                """
            ),
        ] = None,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // constant, then the output type can be statically determined.
        RankedTensorType out_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!out_ty || !out_ty.hasStaticShape()) return failure();
    
        // Extract out all the constant indices' attributes and verify that data
        // types are static.
        SmallVector<DenseIntElementsAttr, 4> indices;
        indices.reserve(op.getN());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "EXTRconst", argLength: 2, reg: gp21, asm: "EXTR", aux: "Int64"},   // extract 64 bits from arg0:arg1 starting at lsb auxInt, auxInt should be in the range 0 to 63.
    		{name: "EXTRWconst", argLength: 2, reg: gp21, asm: "EXTRW", aux: "Int64"}, // extract 32 bits from arg0[31:0]:arg1[31:0] starting at lsb auxInt and zero top 32 bits, auxInt should be in the range 0 to 31.
    
    		// comparisons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

                        $shape),
        [(AnyStaticShapeTensor $input),
          (IsReducedTailOfShape $rhs, $lhs),
          (IsLastDimEqualToNumElements $input, $rhs),
          (HasOneUse $lhs),
          // Restrict operands to have at most rank 4 because TFLite binary
          // kernel supports up to 4D broadcast.
          (HasRankAtMost<4> $input),
          (HasRankAtMost<4> $lhs),
          (HasRankAtMost<4> $rhs),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/crypto/x509/x509.go

    	Subject             pkix.Name
    	NotBefore, NotAfter time.Time // Validity bounds.
    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    			// users to specify a trimmed set of services for one or more
    			// listeners and then add a catch all egress listener for all
    			// other ports. Doing so allows people to restrict the set of
    			// services exposed on one or more listeners, and avoid hard
    			// port conflicts like tcp taking over http or http taking over
    			// tcp, or simply specify that of all the listeners that Istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. cmd/iam.go

    	sys.initStore(objAPI, etcdClient)
    	sys.Unlock()
    
    	retryCtx, cancel := context.WithCancel(ctx)
    
    	// Indicate to our routine to exit cleanly upon return.
    	defer cancel()
    
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    
    	// Migrate storage format if needed.
    	for {
    		// Migrate IAM configuration, if necessary.
    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	expectedSvcList := []*model.Service{svc1, svc2, svc3, svc4}
    	eventually(t, func() bool {
    		svcList := controller.Services()
    		return servicesEqual(svcList, expectedSvcList)
    	})
    
    	// restrict namespaces to nsA (expect 2 delete events for svc3 and svc4)
    	updateMeshConfig(
    		&meshconfig.MeshConfig{
    			DiscoverySelectors: []*meshconfig.LabelSelector{
    				{
    					MatchLabels: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      for (auto tensor_index : op.outputs) {
        locations.push_back(TensorLoc(*tensors[tensor_index], builder, base));
      }
      return mlir::FusedLoc::get(builder.getContext(), locations);
    }
    
    // Extract the min max information in the tensor and create the quant stats op.
    // If the input `tensor` has scale/zero_point, `res` should have quantized
    // type, thus none stats op is required and nullptr is returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        if (subtypes.size() != 1) return failure();
        RankedTensorType list_element_ty =
            subtypes.front().dyn_cast<RankedTensorType>();
        if (!list_element_ty) return failure();
    
        // Extract tensor elements for the TensorList and construct result type
        // based on the number of elements and element shape.
        const std::vector<tensorflow::Tensor> &tensors = list->tensors();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top