Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for getp1 (2.54 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    			"(*mspan).allocBitsForIndex",
    			"(*mspan).base",
    			"(*mspan).markBitsForBase",
    			"(*mspan).markBitsForIndex",
    			"(*mspan).writeUserArenaHeapBits",
    			"(*muintptr).set",
    			"(*puintptr).set",
    			"(*wbBuf).get1",
    			"(*wbBuf).get2",
    
    			// Trace-related ones.
    			"traceLocker.ok",
    			"traceEnabled",
    		},
    		"runtime/internal/sys": {},
    		"runtime/internal/math": {
    			"MulUintptr",
    		},
    		"bytes": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/runtime/mwbbuf.go

    // it called anything) has to be nosplit to avoid scheduling on to a
    // different P and a different buffer.
    //
    //go:nowritebarrierrec
    //go:nosplit
    func (b *wbBuf) get1() *[1]uintptr {
    	if b.next+goarch.PtrSize > b.end {
    		wbBufFlush()
    	}
    	p := (*[1]uintptr)(unsafe.Pointer(b.next))
    	b.next += goarch.PtrSize
    	return p
    }
    
    //go:nowritebarrierrec
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	// Check pv cache
    	pvCache := env.internalBinder.pvCache
    	for _, b := range bindings {
    		pv, err := pvCache.GetPV(b.pv.Name)
    		if err != nil {
    			t.Errorf("GetPV %q returned error: %v", b.pv.Name, err)
    			continue
    		}
    		if pv.Spec.ClaimRef == nil {
    			t.Errorf("PV %q ClaimRef is nil", b.pv.Name)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    	getPC := debugInfo.GetPC
    
    	if ctxt.UseBASEntries {
    		listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, ^0)
    		listSym.WriteAddr(ctxt, listSym.Size, ctxt.Arch.PtrSize, startPC, 0)
    	}
    
    	// Re-read list, translating its address from block/value ID to PC.
    	for i := 0; i < len(list); {
    		begin := getPC(decodeValue(ctxt, readPtr(ctxt, list[i:])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	if len(boundClaims) == 0 {
    		return
    	}
    
    	var errs []error
    	for _, pvc := range boundClaims {
    		pvName := pvc.Spec.VolumeName
    		pv, err := b.pvCache.GetPV(pvName)
    		if err != nil {
    			errs = append(errs, err)
    			continue
    		}
    
    		// if the PersistentVolume is local and has node affinity matching specific node(s),
    		// add them to the eligible nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    		tp = s.typePointersOf(dst, size)
    	}
    	if src == 0 {
    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    			p := buf.get1()
    			p[0] = *dstx
    		}
    	} else {
    		for {
    			var addr uintptr
    			if tp, addr = tp.next(dst + size); addr == 0 {
    				break
    			}
    			dstx := (*uintptr)(unsafe.Pointer(addr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                SmallVectorImpl<int64_t>& s0_shape,
                                SmallVectorImpl<int64_t>& s1_shape) {
      if (!matchPattern(op.getS0(), m_Constant(&s0))) return false;
      if (!matchPattern(op.getS1(), m_Constant(&s1))) return false;
    
      for (auto s : s0.getValues<APInt>()) s0_shape.push_back(s.getSExtValue());
      for (auto s : s1.getValues<APInt>()) s1_shape.push_back(s.getSExtValue());
    
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/CallTest.kt

        val response = client.newCall(request).execute()
        assertThat(response.body.string()).isEqualTo("response body")
        val get1 = server.takeRequest()
        assertThat(get1.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
        assertThat(get1.headers["Proxy-Authorization"]).isNull()
        val get2 = server.takeRequest()
        assertThat(get2.requestLine).isEqualTo("GET http://android.com/foo HTTP/1.1")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    		// lists. At the moment, Prog.Pc is a sequence number; it's not a real PC
    		// until after assembly, so the translation needs to be deferred.
    		debugInfo.GetPC = func(b, v ssa.ID) int64 {
    			switch v {
    			case ssa.BlockStart.ID:
    				if b == f.Entry.ID {
    					return 0 // Start at the very beginning, at the assembler-generated prologue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top