Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for qsub (0.38 sec)

  1. src/cmd/compile/internal/ssa/rewritePPC64.go

    		x := v_0.Args[0]
    		if !(is32Bit(-c)) {
    			break
    		}
    		v.reset(OpPPC64ADDconst)
    		v.AuxInt = int64ToAuxInt(-c)
    		v.AddArg(x)
    		return true
    	}
    	// match: (NEG (SUB x y))
    	// result: (SUB y x)
    	for {
    		if v_0.Op != OpPPC64SUB {
    			break
    		}
    		y := v_0.Args[1]
    		x := v_0.Args[0]
    		v.reset(OpPPC64SUB)
    		v.AddArg2(y, x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OADD, types.TFLOAT64}: ssa.OpAdd64F,
    
    	{ir.OSUB, types.TINT8}:    ssa.OpSub8,
    	{ir.OSUB, types.TUINT8}:   ssa.OpSub8,
    	{ir.OSUB, types.TINT16}:   ssa.OpSub16,
    	{ir.OSUB, types.TUINT16}:  ssa.OpSub16,
    	{ir.OSUB, types.TINT32}:   ssa.OpSub32,
    	{ir.OSUB, types.TUINT32}:  ssa.OpSub32,
    	{ir.OSUB, types.TINT64}:   ssa.OpSub64,
    	{ir.OSUB, types.TUINT64}:  ssa.OpSub64,
    	{ir.OSUB, types.TFLOAT32}: ssa.OpSub32F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	69,  // 186: v1alpha1.IntOrString.strVal:type_name -> google.protobuf.StringValue
    	187, // [187:187] is the sub-list for method output_type
    	187, // [187:187] is the sub-list for method input_type
    	187, // [187:187] is the sub-list for extension type_name
    	187, // [187:187] is the sub-list for extension extendee
    	0,   // [0:187] is the sub-list for field type_name
    }
    
    func init() { file_pkg_apis_istio_v1alpha1_values_types_proto_init() }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    				return
    			}
    		}
    		if deadline.IsZero() {
    			st.readDeadline = nil
    		} else if st.readDeadline == nil {
    			st.readDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onReadTimeout)
    		} else {
    			st.readDeadline.Reset(deadline.Sub(sc.srv.now()))
    		}
    	})
    	return nil
    }
    
    func (w *http2responseWriter) SetWriteDeadline(deadline time.Time) error {
    	st := w.rws.stream
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier_test.go

    // packet with the given sourceIP, destIP, and destPort.
    func (tracer *iptablesTracer) ruleMatches(rule *iptablestest.Rule, sourceIP, protocol, destIP, destPort string) bool {
    	// The sub-rules within an iptables rule are ANDed together, so the rule only
    	// matches if all of them match. So go through the subrules, and if any of them
    	// DON'T match, then fail.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top