Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for typeOff (0.2 sec)

  1. pkg/apis/apps/v1/defaults_test.go

    	}
    	obj2, err := runtime.Decode(legacyscheme.Codecs.UniversalDecoder(), data)
    	if err != nil {
    		t.Errorf("%v\nData: %s\nSource: %#v", err, string(data), obj)
    		return nil
    	}
    	obj3 := reflect.New(reflect.TypeOf(obj).Elem()).Interface().(runtime.Object)
    	err = legacyscheme.Scheme.Convert(obj2, obj3, nil)
    	if err != nil {
    		t.Errorf("%v\nSource: %#v", err, obj2)
    		return nil
    	}
    	return obj3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                property.returnTypeRef.accept(this)
            }
    
            override fun visitReceiverParameter(receiverParameter: FirReceiverParameter) {
                receiverParameter.typeRef.accept(this)
            }
    
            override fun visitResolvedTypeRef(resolvedTypeRef: FirResolvedTypeRef) {
                super.visitResolvedTypeRef(resolvedTypeRef)
    
                handleTypeRef(resolvedTypeRef)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. src/syscall/js/js.go

    	default:
    		panic("bad type")
    	}
    }
    
    func (t Type) isObject() bool {
    	return t == TypeObject || t == TypeFunction
    }
    
    // Type returns the JavaScript type of the value v. It is similar to JavaScript's typeof operator,
    // except that it returns TypeNull instead of TypeObject for null.
    func (v Value) Type() Type {
    	switch v.ref {
    	case valueUndefined.ref:
    		return TypeUndefined
    	case valueNull.ref:
    		return TypeNull
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

    #include "tensorflow/core/framework/tensor_shape.pb.h"
    #include "tensorflow/core/util/device_name_utils.h"
    
    namespace mlir {
    namespace TFTPU {
    
    namespace {
    
    constexpr char kDeviceAttr[] = "device";
    typedef std::pair<TF::Conv2DOp, int64_t> Conv2DWithBlockSize;
    
    struct BlockArgumentInfo {
      unsigned arg_num;
      unsigned num_users;
    };
    
    #define GEN_PASS_DEF_TPUSPACETODEPTHPASS
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  5. tensorflow/c/kernels.cc

    // This file forms the basis of a stable ABI for third-party kernel
    // implementations. It is crucial that changes to this file are made cautiously
    // and with a focus on maintaining both source and binary compatibility.
    
    typedef std::function<void()> AsyncOpKernelDoneCallback;
    void TF_RunAsyncOpKernelDoneCallback(TF_AsyncOpKernelDoneCallback* done) {
      (*reinterpret_cast<AsyncOpKernelDoneCallback*>(done))();
    }
    
    struct TF_KernelBuilder {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

      absl::flat_hash_map<Operation*, Node*> nodes_;
      llvm::DenseMap<BlockArgument, Node*> args_;
      // One single return operation can return multiple results, and each of them
      // will be converted to one node in the graph.
      typedef absl::InlinedVector<Node*, 4> NodeVector;
      absl::flat_hash_map<Operation*, NodeVector> returns_;
      const mlir::Dialect* tf_dialect_;
      const SymbolTable& symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

      absl::flat_hash_map<Operation*, Node*> nodes_;
      llvm::DenseMap<BlockArgument, Node*> args_;
      // One single return operation can return multiple results, and each of them
      // will be converted to one node in the graph.
      typedef absl::InlinedVector<Node*, 4> NodeVector;
      absl::flat_hash_map<Operation*, NodeVector> returns_;
      const mlir::Dialect* tf_dialect_;
      const SymbolTable& symbol_table_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. pkg/zdsapi/zds.pb.go

    	}
    	file_zdsapi_zds_proto_msgTypes[8].OneofWrappers = []interface{}{
    		(*WorkloadResponse_Ack)(nil),
    	}
    	type x struct{}
    	out := protoimpl.TypeBuilder{
    		File: protoimpl.DescBuilder{
    			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
    			RawDescriptor: file_zdsapi_zds_proto_rawDesc,
    			NumEnums:      1,
    			NumMessages:   9,
    			NumExtensions: 0,
    			NumServices:   0,
    		},
    		GoTypes:           file_zdsapi_zds_proto_goTypes,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    								t.Skip(test.fixme)
    							}
    
    							var dst reflect.Value
    							if test.into == nil {
    								var i interface{}
    								dst = reflect.ValueOf(&i)
    							} else {
    								dst = reflect.New(reflect.TypeOf(test.into))
    							}
    							err := decMode.Unmarshal(test.in, dst.Interface())
    							test.assertOnError(t, err)
    							if err == nil {
    								if diff := cmp.Diff(test.want, dst.Elem().Interface()); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. src/encoding/binary/binary_test.go

    	for _, dec := range decoders {
    		t.Run(dec.name, func(t *testing.T) {
    			read := func(data any) {
    				err := dec.fn(LittleEndian, data, nil)
    				want := fmt.Sprintf("binary.%s: invalid type %s", dec.name, reflect.TypeOf(data).String())
    				if err == nil {
    					t.Errorf("%T: got no error; want %q", data, want)
    					return
    				}
    				if got := err.Error(); got != want {
    					t.Errorf("%T: got %q; want %q", data, got, want)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top