Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for mid2 (0.61 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. pkg/kubelet/status/status_manager_test.go

    	cID1 := kubecontainer.ContainerID{Type: "test", ID: "1"}
    	cID2 := kubecontainer.ContainerID{Type: "test", ID: "2"}
    	containerStatuses := []v1.ContainerStatus{
    		{
    			Name:        "c1",
    			ContainerID: cID1.String(),
    			Ready:       false,
    		}, {
    			Name:        "c2",
    			ContainerID: cID2.String(),
    			Ready:       false,
    		},
    	}
    	status := v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	reconciler := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    	podName1 := "pod-uid1"
    	podName2 := "pod-uid2"
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Find all ops that we know compose the embedding forward and backward pass.
      // These ops are only tagged if one enables the
      // `pipeline_execution_with_tensor_core` flag in the mid-level API.
      WalkResult walk_result = module.walk([&](Operation* op) -> WalkResult {
        if (op->hasAttr(kEmbeddingPipelining)) {
          const std::string region =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top