Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 112 for arab (0.07 sec)

  1. src/runtime/mbitmap.go

    		} else {
    			tp.addr += ptrBits * goarch.PtrSize
    		}
    
    		// Check if we've exceeded the limit with the last update.
    		if tp.addr >= limit {
    			return typePointers{}, 0
    		}
    
    		// Grab more bits and try again.
    		tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
    		if tp.addr+goarch.PtrSize*ptrBits > limit {
    			bits := (tp.addr + goarch.PtrSize*ptrBits - limit) / goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/convert.go

    	if toType.IsEmptyInterface() {
    		// Implement interface to empty interface conversion:
    		//
    		// var res *uint8
    		// res = (*uint8)(unsafe.Pointer(itab))
    		// if res != nil {
    		//    res = res.type
    		// }
    
    		// Grab its parts.
    		itab := ir.NewUnaryExpr(base.Pos, ir.OITAB, c)
    		itab.SetType(types.Types[types.TUINTPTR].PtrTo())
    		itab.SetTypecheck(1)
    		data := ir.NewUnaryExpr(n.Pos(), ir.OIDATA, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. src/regexp/testdata/re2-search.txt

    "\\p{Any}+"
    -;-;-;-
    0-6;0-6;0-6;0-6
    "^(?:\\p{Any}+)$"
    -;-;-;-
    0-6;0-6;0-6;0-6
    "^(?:\\p{Any}+)"
    -;-;-;-
    0-6;0-6;0-6;0-6
    "(?:\\p{Any}+)$"
    -;-;-;-
    0-6;0-6;0-6;0-6
    strings
    ""
    "@AaB"
    regexps
    "(?i)[@-A]+"
    -;-;-;-
    -;0-3;-;0-3
    "^(?:(?i)[@-A]+)$"
    -;-;-;-
    -;-;-;-
    "^(?:(?i)[@-A]+)"
    -;-;-;-
    -;0-3;-;0-3
    "(?:(?i)[@-A]+)$"
    -;-;-;-
    -;-;-;-
    strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 42.4K bytes
    - Viewed (0)
  4. src/bytes/buffer_test.go

    	buffer   string
    	delim    byte
    	expected []string
    	err      error
    }{
    	{"", 0, []string{""}, io.EOF},
    	{"a\x00", 0, []string{"a\x00"}, nil},
    	{"abbbaaaba", 'b', []string{"ab", "b", "b", "aaab"}, nil},
    	{"hello\x01world", 1, []string{"hello\x01"}, nil},
    	{"foo\nbar", 0, []string{"foo\nbar"}, io.EOF},
    	{"alpha\nbeta\ngamma\n", '\n', []string{"alpha\n", "beta\n", "gamma\n"}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/net/rpc/server.go

    	}
    	return
    }
    
    func (server *Server) readRequestHeader(codec ServerCodec) (svc *service, mtype *methodType, req *Request, keepReading bool, err error) {
    	// Grab the request header.
    	req = server.getRequest()
    	err = codec.ReadRequestHeader(req)
    	if err != nil {
    		req = nil
    		if err == io.EOF || err == io.ErrUnexpectedEOF {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm/asm5.go

    		i--
    
    		switch r {
    		default:
    			ctxt.Diag("unknown op in build: %v", r)
    			ctxt.DiagFlush()
    			log.Fatalf("bad code")
    
    		case AADD:
    			opset(ASUB, r0)
    			opset(ARSB, r0)
    			opset(AADC, r0)
    			opset(ASBC, r0)
    			opset(ARSC, r0)
    
    		case AORR:
    			opset(AEOR, r0)
    			opset(ABIC, r0)
    
    		case ACMP:
    			opset(ATEQ, r0)
    			opset(ACMN, r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. src/runtime/iface.go

    	// that updates the itabTable field (with atomic.Storep in itabAdd).
    	t := (*itabTableType)(atomic.Loadp(unsafe.Pointer(&itabTable)))
    	if m = t.find(inter, typ); m != nil {
    		goto finish
    	}
    
    	// Not found.  Grab the lock and try again.
    	lock(&itabLock)
    	if m = itabTable.find(inter, typ); m != nil {
    		unlock(&itabLock)
    		goto finish
    	}
    
    	// Entry doesn't exist yet. Make a new entry & add it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. hack/lib/util.sh

    kube::util::trap_add() {
      local trap_add_cmd
      trap_add_cmd=$1
      shift
    
      for trap_add_name in "$@"; do
        local existing_cmd
        local new_cmd
    
        # Grab the currently defined trap commands for this trap
        existing_cmd=$(trap -p "${trap_add_name}" |  awk -F"'" '{print $2}')
    
        if [[ -z "${existing_cmd}" ]]; then
          new_cmd="${trap_add_cmd}"
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables.go

    	trace := utiltrace.New("iptables restore")
    	defer trace.LogIfLong(2 * time.Second)
    
    	if !flush {
    		args = append(args, "--noflush")
    	}
    	if counters {
    		args = append(args, "--counters")
    	}
    
    	// Grab the iptables lock to prevent iptables-restore and iptables
    	// from stepping on each other.  iptables-restore 1.6.2 will have
    	// a --wait option like iptables itself, but that's not widely deployed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/cpumanager/policy_static.go

    		if err != nil {
    			return cpuset.New(), err
    		}
    
    		result = result.Union(alignedCPUs)
    	}
    
    	// Get any remaining CPUs from what's leftover after attempting to grab aligned ones.
    	remainingCPUs, err := p.takeByTopology(allocatableCPUs.Difference(result), numCPUs-result.Size())
    	if err != nil {
    		return cpuset.New(), err
    	}
    	result = result.Union(remainingCPUs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
Back to top