Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for Undo (0.04 sec)

  1. src/runtime/stkframe.go

    		// context register and immediately save it to 0(SP).
    		// Get the methodValue from 0(SP).
    		arg0 := frame.sp + sys.MinFrameSize
    
    		minSP := frame.fp
    		if !usesLR {
    			// The CALL itself pushes a word.
    			// Undo that adjustment.
    			minSP -= goarch.PtrSize
    		}
    		if arg0 >= minSP {
    			// The function hasn't started yet.
    			// This only happens if f was the
    			// start function of a new goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                    server = uri("https://ge.gradle.org")
                    enabled.convention(project.predictiveTestSelectionEnabled)
                }
            }
        }
    }
    
    fun removeTeamcityTempProperty() {
        // Undo: https://github.com/JetBrains/teamcity-gradle/blob/e1dc98db0505748df7bea2e61b5ee3a3ba9933db/gradle-runner-agent/src/main/scripts/init.gradle#L818
        if (project.hasProperty("teamcity")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/runtime/mcache.go

    			gcController.totalAlloc.Add(slotsUsed * int64(s.elemsize))
    
    			if s.sweepgen != sg+1 {
    				// refill conservatively counted unallocated slots in gcController.heapLive.
    				// Undo this.
    				//
    				// If this span was cached before sweep, then gcController.heapLive was totally
    				// recomputed since caching this span, so we don't do this for stale spans.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/DirectedGraphConnections.java

        /*
         * TODO(cpovirk): `return (V) removedValue` once our checker permits that.
         *
         * (We promoted a class of warnings into errors because sometimes they indicate real problems.
         * But now we need to "undo" some instance of spurious errors, as discussed in
         * https://github.com/jspecify/checker-framework/issues/8.)
         */
        return removedValue == null ? null : (V) removedValue;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

        /*
         * TODO(cpovirk): `return (V) removedValue` once our checker permits that.
         *
         * (We promoted a class of warnings into errors because sometimes they indicate real problems.
         * But now we need to "undo" some instance of spurious errors, as discussed in
         * https://github.com/jspecify/checker-framework/issues/8.)
         */
        return removedValue == null ? null : (V) removedValue;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 18K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    			return fmt.Errorf("bind mount to %q failed: %v", "/etc/nsswitch.conf", err)
    		}
    		return nil
    	}
    
    	executed := false
    	// Once we call unshare(CLONE_NEWNS), we cannot undo it explicitly. Instead, we need to unshare on a specific thread,
    	// then kill that thread when we are done (or rather, let Go runtime kill the thread).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/runtime/chan.go

    	if c.timer != nil && async {
    		c.timer.maybeRunChan()
    	}
    	if c.timer != nil && !async {
    		// timer channels have a buffered implementation
    		// but present to users as unbuffered, so that we can
    		// undo sends without users noticing.
    		return 0
    	}
    	return int(c.qcount)
    }
    
    func chancap(c *hchan) int {
    	if c == nil {
    		return 0
    	}
    	if c.timer != nil {
    		async := debug.asynctimerchan.Load() != 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/time/format_test.go

    	if offset != -4*60*60 {
    		t.Fatalf("ParseInLocation(Feb 01 2013 AST, Blanc-Sablon).Zone = _, %d, want _, %d", offset, -4*60*60)
    	}
    }
    
    func TestLoadLocationZipFile(t *testing.T) {
    	undo := DisablePlatformSources()
    	defer undo()
    
    	_, err := LoadLocation("Australia/Sydney")
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    var rubyTests = []ParseTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/dwarfgen/dwinl.go

    		// names are given "middle dot" version numbers as part of the
    		// writing them out to export data (see issue 4326). If DWARF
    		// inlined routine generation is turned on, we want to undo
    		// this versioning, since DWARF variables in question will be
    		// parented by the inlined routine and not the top-level
    		// caller.
    		synthCount := len(m)
    		for _, v := range sl {
    			vp := varPos{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/runtime/os_windows.go

    	stackcheck()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	mp := getg().m
    	lock(&mp.threadLock)
    	if mp.thread != 0 {
    		stdcall1(_CloseHandle, mp.thread)
    		mp.thread = 0
    	}
    	unlock(&mp.threadLock)
    
    	mp.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top