Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 277 for inversion (0.24 sec)

  1. src/encoding/json/stream.go

    // Decode reads the next JSON-encoded value from its
    // input and stores it in the value pointed to by v.
    //
    // See the documentation for [Unmarshal] for details about
    // the conversion of JSON into a Go value.
    func (dec *Decoder) Decode(v any) error {
    	if dec.err != nil {
    		return dec.err
    	}
    
    	if err := dec.tokenPrepareForDecode(); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

          custom_op_name, CustomOption(&builder, custom_option_buffer));
      builder.create<func::ReturnOp>(func->getLoc(), tfl_fusable_op.getResults());
      return success();
    }
    
    // Abstracts the conversion of the embedded lookup composite function.
    class ConvertEmbeddedLookupFunc {
     public:
      explicit ConvertEmbeddedLookupFunc(func::FuncOp func) : func_(func) {}
    
      void RewriteFunc() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.deepcopy.go

    		in, out := &in.Versions, &out.Versions
    		*out = make([]CustomResourceDefinitionVersion, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Conversion != nil {
    		in, out := &in.Conversion, &out.Conversion
    		*out = new(CustomResourceConversion)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. docs/fr/docs/index.md

        * <abbr title="en anglais : forms">les formulaires</abbr>.
        * <abbr title="en anglais : files">les fichiers</abbr>.
    * <abbr title="aussi connu sous le nom de : serialization, parsing, marshalling">La conversion</abbr> des données de sortie : conversion des données et types Python en données réseau (au format <abbr title="JavaScript Object Notation">JSON</abbr>), permettant de convertir :
        * les types Python (`str`, `int`, `float`, `bool`, `list`, etc).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        return %0 : tensor<1x4x3xf32>
      }
    // CHECK: @uniform_dequantize_0
    }
    
    // -----
    
    // Tests that when dot_general's filter comes from an f32 constant
    // it is cast to i8 after the conversion.
    
    module {
    // CHECK-LABEL: quantized_dot_general_float_filter
    // CHECK-SAME: %[[ARG:.*]]: tensor<1x4x2xf32>
      func.func @quantized_dot_general_float_filter(%arg0: tensor<1x4x2xf32>) -> tensor<1x4x3xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    	tcp "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/tcp_proxy/v3"
    	"github.com/envoyproxy/go-control-plane/pkg/conversion"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/riscv64.s

    	FMULS	F1, F0, F2				// 53011010
    	FDIVS	F1, F0, F2				// 53011018
    	FMINS	F1, F0, F2				// 53011028
    	FMAXS	F1, F0, F2				// 53111028
    	FSQRTS	F0, F1					// d3000058
    
    	// 11.7: Single-Precision Floating-Point Conversion and Move Instructions
    	FCVTWS	F0, X5					// d31200c0
    	FCVTWS.RNE	F0, X5				// d30200c0
    	FCVTWS.RTZ	F0, X5				// d31200c0
    	FCVTWS.RDN	F0, X5				// d32200c0
    	FCVTWS.RUP	F0, X5				// d33200c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:42:21 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/math/big/ftoa.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements Float-to-string conversion functions.
    // It is closely following the corresponding implementation
    // in strconv/ftoa.go, but modified and simplified for Float.
    
    package big
    
    import (
    	"bytes"
    	"fmt"
    	"strconv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    	if err := os.MkdirAll(dir, 0777); err != nil {
    		f.err = err
    		return
    	}
    
    	goVers, progPath, progVers := telemetry.ProgramInfo(info)
    	f.meta = fmt.Sprintf("TimeBegin: %s\nTimeEnd: %s\nProgram: %s\nVersion: %s\nGoVersion: %s\nGOOS: %s\nGOARCH: %s\n\n",
    		begin.Format(time.RFC3339), end.Format(time.RFC3339),
    		progPath, progVers, goVers, runtime.GOOS, runtime.GOARCH)
    	if len(f.meta) > maxMetaLen { // should be impossible for our use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/reflect/Invokable.java

       * @throws IllegalArgumentException if the number of actual and formal parameters differ; if an
       *     unwrapping conversion for primitive arguments fails; or if, after possible unwrapping, a
       *     parameter value cannot be converted to the corresponding formal parameter type by a method
       *     invocation conversion.
       * @throws InvocationTargetException if the underlying method or constructor throws an exception.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top