Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for barriers (0.1 sec)

  1. src/runtime/proc.go

    }
    
    // Associate p and the current m.
    //
    // This function is allowed to have write barriers even if the caller
    // isn't because it immediately acquires pp.
    //
    //go:yeswritebarrierrec
    func acquirep(pp *p) {
    	// Do the part that isn't allowed to have write barriers.
    	wirep(pp)
    
    	// Have p; write barriers now allowed.
    
    	// Perform deferred mcache flush before this P can allocate
    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. src/reflect/value.go

    			// temporarily for all the cases).
    			//
    			// If/when this happens, take note of the following:
    			//
    			// We must clear the destination before calling assignTo,
    			// in case assignTo writes (with memory barriers) to the
    			// target location used as scratch space. See issue 39541.
    			v = v.assignTo("reflect.MakeFunc", typ, nil)
    		stepsLoop:
    			for _, st := range abid.ret.stepsForValue(i) {
    				switch st.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        hand create a barrier at the end of while loop body thus blocking any
        parallelism across iterations.
    
        For example, the following while loop body has a `%barrier` at the end.
        Although there is no data/control dependency between `tf.AssignVariableOp`
        for `%arg0` to `tf.AssignVariableOp` for `%arg1` across any iteration, the
        while loop body has a control barrier (`%barrier`) at the end which forces
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def cleaningBuild = executer.withTasks("waitForCleaningBarrier").withArgument("--no-daemon").start()
    
            then: 'cleaning build starts and waits on its barrier'
            cleaningBarrier.waitForAllPendingCalls()
    
            when: 'transforming build is started'
            def transformBarrier = blockingHttpServer.expectAndBlock("transform")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AtomicAnd(64|32|8)Variant     ...) => (LoweredAtomicAnd(64|32|8)Variant     ...)
    (AtomicOr(64|32|8)Variant      ...) => (LoweredAtomicOr(64|32|8)Variant      ...)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    // Publication barrier (0xe is ST option)
    (PubBarrier mem) => (DMB [0xe] mem)
    
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 0 => (LoweredPanicBoundsA [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    		close(fooDone)
    	}()
    	defer func() {
    		<-fooDone
    	}()
    
    	barRes, err := c.Get(ts.URL + "/bar")
    	if err != nil {
    		t.Fatal(err)
    	}
    	barAddr := barRes.Header.Get("bar-ipport")
    	if barAddr != fooAddr {
    		t.Fatalf("/foo came from conn %q; /bar came from %q instead", fooAddr, barAddr)
    	}
    	barRes.Body.Close()
    }
    
    // Issue 2184
    func TestTransportReading100Continue(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	podPhase := pod.Status.Phase
    	reason := string(podPhase)
    	if pod.Status.Reason != "" {
    		reason = pod.Status.Reason
    	}
    
    	// If the Pod carries {type:PodScheduled, reason:SchedulingGated}, set reason to 'SchedulingGated'.
    	for _, condition := range pod.Status.Conditions {
    		if condition.Type == api.PodScheduled && condition.Reason == apiv1.PodReasonSchedulingGated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top