Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for istr (0.09 sec)

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

    }
    func rewriteValueS390X_OpLoad(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (Load <t> ptr mem)
    	// cond: (is64BitInt(t) || isPtr(t))
    	// result: (MOVDload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is64BitInt(t) || isPtr(t)) {
    			break
    		}
    		v.reset(OpS390XMOVDload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 395.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		len := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], slice)
    		return s.newValue2(ssa.OpStringMake, n.Type(), ptr, len)
    	case ir.OSTR2BYTESTMP:
    		n := n.(*ir.ConvExpr)
    		str := s.expr(n.X)
    		ptr := s.newValue1(ssa.OpStringPtr, s.f.Config.Types.BytePtr, str)
    		if !n.NonNil() {
    			// We need to ensure []byte("") evaluates to []byte{}, and not []byte(nil).
    			//
    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. pkg/proxy/iptables/proxier_test.go

    // ipStr. address.Value is either an IP address ("1.2.3.4") or a CIDR string
    // ("1.2.3.0/24").
    func addressMatches(t *testing.T, address *iptablestest.IPTablesValue, ipStr string) bool {
    	ip := netutils.ParseIPSloppy(ipStr)
    	if ip == nil {
    		t.Fatalf("Bad IP in test case: %s", ipStr)
    	}
    
    	var matches bool
    	if strings.Contains(address.Value, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite386.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADDL x (MOVLconst <t> [c]))
    	// cond: !t.IsPtr()
    	// result: (ADDLconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != Op386MOVLconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt32(v_1.AuxInt)
    			if !(!t.IsPtr()) {
    				continue
    			}
    			v.reset(Op386ADDLconst)
    			v.AuxInt = int32ToAuxInt(c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    	}
    	panic("this test is broken: before and after are both nil")
    }
    
    func ipIsAllocated(t *testing.T, alloc ipallocator.Interface, ipstr string) bool {
    	t.Helper()
    	ip := netutils.ParseIPSloppy(ipstr)
    	if ip == nil {
    		t.Errorf("error parsing IP %q", ipstr)
    		return false
    	}
    	return alloc.Has(ip)
    }
    
    func portIsAllocated(t *testing.T, alloc portallocator.Interface, port int32) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (Load <t> ptr mem)
    	// cond: (is64BitInt(t) || isPtr(t))
    	// result: (MOVDload ptr mem)
    	for {
    		t := v.Type
    		ptr := v_0
    		mem := v_1
    		if !(is64BitInt(t) || isPtr(t)) {
    			break
    		}
    		v.reset(OpPPC64MOVDload)
    		v.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (Load <t> ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	b := v.Block
    	// match: (ADD x (MOVWconst <t> [c]))
    	// cond: !t.IsPtr()
    	// result: (ADDconst [c] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARMMOVWconst {
    				continue
    			}
    			t := v_1.Type
    			c := auxIntToInt32(v_1.AuxInt)
    			if !(!t.IsPtr()) {
    				continue
    			}
    			v.reset(OpARMADDconst)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.7.md

      * Improves performance of Cinder volume attach/detach operations. ([#41785](https://github.com/kubernetes/kubernetes/pull/41785), [@jamiehannaford](https://github.com/jamiehannaford))
    
      * Fix iSCSI iSER mounting. ([#47281](https://github.com/kubernetes/kubernetes/pull/47281), [@mtanino](https://github.com/mtanino))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    			// already be rejected at a higher level.
    			continue
    		}
    		isTE := k == "transfer-encoding"
    		for _, v := range vv {
    			if !httpguts.ValidHeaderFieldValue(v) {
    				// TODO: return an error? golang.org/issue/14048
    				// For now just omit it.
    				continue
    			}
    			// TODO: more of "8.1.2.2 Connection-Specific Header Fields"
    			if isTE && v != "trailers" {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

    * servicecontroller: Fix node selection logic on initial LB creation ([#45773](https://github.com/kubernetes/kubernetes/pull/45773), [@justinsb](https://github.com/justinsb))
    * Fix iSCSI iSER mounting. ([#47281](https://github.com/kubernetes/kubernetes/pull/47281), [@mtanino](https://github.com/mtanino))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top