Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for barriers (0.2 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. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/internal/http2/Http2ExchangeCodec;->createRequestBody(Lokhttp3/Request;J)Lokio/Sink;
    HSPLokhttp3/internal/http2/Http2ExchangeCodec;->finishRequest()V
    HSPLokhttp3/internal/http2/Http2ExchangeCodec;->getCarrier()Lokhttp3/internal/http/ExchangeCodec$Carrier;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  5. 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)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Rad Web Hosting: https://radwebhosting.com
    // Submitted by Scott Claeys <******@****.***>
    cloudsite.builders
    
    // Redgate Software: https://red-gate.com
    // Submitted by Andrew Farries <andrew.farries@red-gate.com>
    instances.spawn.cc
    
    // Redstar Consultants : https://www.redstarconsultants.com/
    // Submitted by Jons Slemmer <******@****.***>
    instantcloud.cn
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// LoweredWB invokes runtime.gcWriteBarrier{auxint}. arg0=mem, auxint=# of buffer entries needed.
    		// It saves all GP registers if necessary, but may clobber others.
    		// Returns a pointer to a write barrier buffer in R11.
    		{name: "LoweredWB", argLength: 1, reg: regInfo{clobbers: callerSave &^ (gp | g), outputs: []regMask{buildReg("R11")}}, clobberFlags: true, aux: "Int64"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  10. 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