Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for purego (0.16 sec)

  1. src/runtime/proc.go

    			}
    			incidlelocked(1)
    			lock(&allpLock)
    		}
    	}
    	unlock(&allpLock)
    	return uint32(n)
    }
    
    // Tell all goroutines that they have been preempted and they should stop.
    // This function is purely best-effort. It can fail to inform a goroutine if a
    // processor just started running it.
    // No locks need to be held.
    // Returns true if preemption request was issued to at least one goroutine.
    func preemptall() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods_test.go

    	kl := testKubelet.kubelet
    
    	// convertToAPIContainerStatuses is purely transformative and shouldn't alter the state of the kubelet
    	// as there are no synchronisation events in that function (no locks, no channels, ...) each test routine
    	// should have its own vector clock increased independently. Golang race detector uses pure happens-before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // names, since they don't necessarily have a well-defined ABI (diagnosed
        // earlier).
        //
        // For variables/constants, pruning them is purely an optimization,
        // and more complicated since it requires use-def analysis of which
        // functions use which variables/constants, so we don't do anything
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    		args = append(args, oclass(ctxt, p, &p.RestArgs[i].Addr)*Ymax)
    	}
    	if tt != Ynone*Ymax {
    		args = append(args, tt)
    	}
    
    	for _, yt := range o.ytab {
    		// ytab matching is purely args-based,
    		// but AVX512 suffixes like "Z" or "RU_SAE" will
    		// add EVEX-only filter that will reject non-EVEX matches.
    		//
    		// Consider "VADDPD.BCST 2032(DX), X0, X0".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top