Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for func4 (0.23 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    func (m *IngressStatus) XXX_Size() int {
    	return m.Size()
    }
    func (m *IngressStatus) XXX_DiscardUnknown() {
    	xxx_messageInfo_IngressStatus.DiscardUnknown(m)
    }
    
    var xxx_messageInfo_IngressStatus proto.InternalMessageInfo
    
    func (m *IngressTLS) Reset()      { *m = IngressTLS{} }
    func (*IngressTLS) ProtoMessage() {}
    func (*IngressTLS) Descriptor() ([]byte, []int) {
    	return fileDescriptor_9497719c79c89d2d, []int{16}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteWasm.go

    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Com16 x)
    	// result: (I64Xor x (I64Const [-1]))
    	for {
    		x := v_0
    		v.reset(OpWasmI64Xor)
    		v0 := b.NewValue0(v.Pos, OpWasmI64Const, typ.Int64)
    		v0.AuxInt = int64ToAuxInt(-1)
    		v.AddArg2(x, v0)
    		return true
    	}
    }
    func rewriteValueWasm_OpCom32(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Com32 x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 108.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/generated.pb.go

    }
    func (m *Scale) XXX_Size() int {
    	return m.Size()
    }
    func (m *Scale) XXX_DiscardUnknown() {
    	xxx_messageInfo_Scale.DiscardUnknown(m)
    }
    
    var xxx_messageInfo_Scale proto.InternalMessageInfo
    
    func (m *ScaleSpec) Reset()      { *m = ScaleSpec{} }
    func (*ScaleSpec) ProtoMessage() {}
    func (*ScaleSpec) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2747f709ac7c95e7, []int{13}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    }
    func (m *Scale) XXX_Size() int {
    	return m.Size()
    }
    func (m *Scale) XXX_DiscardUnknown() {
    	xxx_messageInfo_Scale.DiscardUnknown(m)
    }
    
    var xxx_messageInfo_Scale proto.InternalMessageInfo
    
    func (m *ScaleSpec) Reset()      { *m = ScaleSpec{} }
    func (*ScaleSpec) ProtoMessage() {}
    func (*ScaleSpec) Descriptor() ([]byte, []int) {
    	return fileDescriptor_c423c016abf485d4, []int{23}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework_test.go

    	name string
    	inj  injectedResult
    }
    
    func (pl *TestScoreWithNormalizePlugin) Name() string {
    	return pl.name
    }
    
    func (pl *TestScoreWithNormalizePlugin) NormalizeScore(ctx context.Context, state *framework.CycleState, pod *v1.Pod, scores framework.NodeScoreList) *framework.Status {
    	return injectNormalizeRes(pl.inj, scores)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    }
    
    // CHECK-LABEL: func @add_i32
    // CHECK: stablehlo.add
    // CHECK-NOT: tfl.add
    
    // -----
    
    // Tests that a quantized `stablehlo.constant` is converted into `tfl.qconst`.
    
    // CHECK-LABEL: func @quantized_constant
    func.func @quantized_constant() -> tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+0>> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller_test.go

    	}
    }
    
    func setNodeTaint(node *v1.Node, taints []v1.Taint) {
    	node.Spec.Taints = taints
    }
    
    func setDaemonSetToleration(ds *apps.DaemonSet, tolerations []v1.Toleration) {
    	ds.Spec.Template.Spec.Tolerations = tolerations
    }
    
    // DaemonSet should launch a pod even when the node with MemoryPressure/DiskPressure/PIDPressure taints.
    func TestTaintPressureNodeDaemonLaunchesPod(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  8. src/net/http/server.go

    var copyBufPool = sync.Pool{New: func() any { return new([copyBufPoolSize]byte) }}
    
    func getCopyBuf() []byte {
    	return copyBufPool.Get().(*[copyBufPoolSize]byte)[:]
    }
    func putCopyBuf(b []byte) {
    	if len(b) != copyBufPoolSize {
    		panic("trying to put back buffer of the wrong size in the copyBufPool")
    	}
    	copyBufPool.Put((*[copyBufPoolSize]byte)(b))
    }
    
    func bufioWriterPool(size int) *sync.Pool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. pkg/scheduler/schedule_one_test.go

    }
    
    func (pl *falseMapPlugin) ScoreExtensions() framework.ScoreExtensions {
    	return nil
    }
    
    type numericMapPlugin struct{}
    
    func newNumericMapPlugin() frameworkruntime.PluginFactory {
    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    		return &numericMapPlugin{}, nil
    	}
    }
    
    func (pl *numericMapPlugin) Name() string {
    	return "NumericMap"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	isDir   bool
    	sys     interface{}
    }
    
    func (f dummyFileInfo) Name() string       { return f.name }
    func (f dummyFileInfo) Size() int64        { return f.size }
    func (f dummyFileInfo) Mode() os.FileMode  { return f.mode }
    func (f dummyFileInfo) ModTime() time.Time { return f.modTime }
    func (f dummyFileInfo) IsDir() bool        { return f.isDir }
    func (f dummyFileInfo) Sys() interface{}   { return f.sys }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top