Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for FUNC (0.23 sec)

  1. src/net/http/h2_bundle.go

    var http2dataChunkPools = [...]sync.Pool{
    	{New: func() interface{} { return new([1 << 10]byte) }},
    	{New: func() interface{} { return new([2 << 10]byte) }},
    	{New: func() interface{} { return new([4 << 10]byte) }},
    	{New: func() interface{} { return new([8 << 10]byte) }},
    	{New: func() interface{} { return new([16 << 10]byte) }},
    }
    
    func http2getDataBufferChunk(size int64) []byte {
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    func (m *ConversionRequest) Reset()      { *m = ConversionRequest{} }
    func (*ConversionRequest) ProtoMessage() {}
    func (*ConversionRequest) Descriptor() ([]byte, []int) {
    	return fileDescriptor_3623d6c0bd238430, []int{0}
    }
    func (m *ConversionRequest) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

    // RUN: tf-opt -tfl-prepare-composite-funcs-tf="fuse-tftext=true" %s | FileCheck %s
    
    func.func private @whitespace_tokenizer_rank1(%arg0: tensor<1x!tf_type.string> {tf._user_specified_name = "input"}) -> (tensor<?x!tf_type.string>, tensor<?xi64>) attributes {tf._input_shapes = [#tf_type.shape<1>], tf._implements = #tf_type.func<@"tftext:WhitespaceTokenizer", {}>, tf.signature.is_stateful} {
      %0 = "tf.Const"() {value = dense<[0, 1]> : tensor<2xi64>} : () -> tensor<2xi64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation.go

    	return false
    }
    
    func deviceNameAlreadyExists(name string, mounts map[string]string) bool {
    	if _, ok := mounts[name]; ok {
    		return true
    	}
    	return false
    }
    
    func devicePathAlreadyExists(devicePath string, mounts map[string]string) bool {
    	for _, mountPath := range mounts {
    		if mountPath == devicePath {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewritePPC64.go

    	}
    }
    func rewriteValuePPC64_OpCvt64Fto32(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Cvt64Fto32 x)
    	// result: (MFVSRD (FCTIWZ x))
    	for {
    		x := v_0
    		v.reset(OpPPC64MFVSRD)
    		v0 := b.NewValue0(v.Pos, OpPPC64FCTIWZ, typ.Float64)
    		v0.AddArg(x)
    		v.AddArg(v0)
    		return true
    	}
    }
    func rewriteValuePPC64_OpCvt64Fto64(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteS390X.go

    		return true
    	}
    }
    func rewriteValueS390X_OpConstNil(v *Value) bool {
    	// match: (ConstNil)
    	// result: (MOVDconst [0])
    	for {
    		v.reset(OpS390XMOVDconst)
    		v.AuxInt = int64ToAuxInt(0)
    		return true
    	}
    }
    func rewriteValueS390X_OpCtz32(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Ctz32 <t> x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    }
    func (s *state) constNil(t *types.Type) *ssa.Value { return s.f.ConstNil(t) }
    func (s *state) constEmptyString(t *types.Type) *ssa.Value {
    	return s.f.ConstEmptyString(t)
    }
    func (s *state) constBool(c bool) *ssa.Value {
    	return s.f.ConstBool(types.Types[types.TBOOL], c)
    }
    func (s *state) constInt8(t *types.Type, c int8) *ssa.Value {
    	return s.f.ConstInt8(t, c)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite386.go

    		v.Aux = symToAux(mergeSym(sym1, sym2))
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386MOVSDconst(v *Value) bool {
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (MOVSDconst [c])
    	// cond: config.ctxt.Flag_shared
    	// result: (MOVSDconst2 (MOVSDconst1 [c]))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (AppArmorProfile) SwaggerDoc() map[string]string {
    	return map_AppArmorProfile
    }
    
    var map_AttachedVolume = map[string]string{
    	"":           "AttachedVolume describes a volume attached to a node",
    	"name":       "Name of the attached volume",
    	"devicePath": "DevicePath represents the device path where the volume should be available",
    }
    
    func (AttachedVolume) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    }
    func rewriteValueARM_OpConstNil(v *Value) bool {
    	// match: (ConstNil)
    	// result: (MOVWconst [0])
    	for {
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(0)
    		return true
    	}
    }
    func rewriteValueARM_OpCtz16(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Ctz16 <t> x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top