Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mid2 (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // Copy creates a duplicate of security identifier SID.
    func (sid *SID) Copy() (*SID, error) {
    	b := make([]byte, sid.Len())
    	sid2 := (*SID)(unsafe.Pointer(&b[0]))
    	e := CopySid(uint32(len(b)), sid2, sid)
    	if e != nil {
    		return nil, e
    	}
    	return sid2, nil
    }
    
    // IdentifierAuthority returns the identifier authority of the SID.
    func (sid *SID) IdentifierAuthority() SidIdentifierAuthority {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    	}
    
    	// Validate that the M we're stealing from is what we expect.
    	mid := ThreadID(ev.args[2]) // The M we're stealing from.
    
    	newCtx := curCtx
    	if mid == curCtx.M {
    		// We're stealing from ourselves. This behaves like a ProcStop.
    		if curCtx.P != pid {
    			return curCtx, false, fmt.Errorf("tried to self-steal proc %d (thread %d), but got proc %d instead", pid, mid, curCtx.P)
    		}
    		newCtx.P = NoProc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	}
    	if c.id2 != (cache.ActionID{}) {
    		if cache.DebugTest {
    			fmt.Fprintf(os.Stderr, "testcache: %s: save test ID %x => input ID %x => %x\n", a.Package.ImportPath, c.id2, testInputsID, testAndInputKey(c.id2, testInputsID))
    		}
    		cache.PutNoVerify(cache.Default(), c.id2, bytes.NewReader(testlog))
    		cache.PutNoVerify(cache.Default(), testAndInputKey(c.id2, testInputsID), bytes.NewReader(a.TestOutput.Bytes()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top