Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for mkcounter (0.47 sec)

  1. src/cmd/compile/internal/ssa/rewrite.go

    		return false
    	}
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			switch v.Op {
    			case OpStaticCall, OpStaticLECall:
    				// Check for racefuncenter will encounter racefuncexit and vice versa.
    				// Allow calls to panic*
    				s := v.Aux.(*AuxCall).Fn.String()
    				switch s {
    				case "runtime.racefuncenter", "runtime.racefuncexit",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    --
    
    [[sec:advanced_inc_build]]
    == Advanced techniques
    
    Everything you’ve seen so far in this section will cover most of the use cases you’ll encounter, but there are some scenarios that need special treatment. We’ll present a few of those next with the appropriate solutions.
    
    
    [[sec:add_cached_input_output_methods]]
    === Adding your own cached input/output methods
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Hence, it doesn't make sense to define a standalone copy spec without at least one `from()` defined.
    ====
    
    Suppose you encounter a scenario in which you want to apply the same copy configuration to _different_ sets of files.
    In that case, you can share the configuration block directly without using `copySpec()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/testing/testing.go

    	if t.chatty != nil {
    		t.chatty.Updatef(t.name, "=== CONT  %s\n", t.name)
    	}
    	running.Store(t.name, highPrecisionTimeNow())
    	t.start = highPrecisionTimeNow()
    
    	// Reset the local race counter to ignore any races that happened while this
    	// goroutine was blocked, such as in the parent test or in other parallel
    	// subtests.
    	//
    	// (Note that we don't call parent.checkRaces here:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	special   special
    	done      bool
    	reachable bool
    }
    
    // specialPinCounter tracks whether an object is pinned multiple times.
    type specialPinCounter struct {
    	special special
    	counter uintptr
    }
    
    // specialsIter helps iterate over specials lists.
    type specialsIter struct {
    	pprev **special
    	s     *special
    }
    
    func newSpecialsIter(span *mspan) specialsIter {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    			}
    			if runtime.GOOS == "openbsd" && *flagLibGCC == "libgcc.a" {
    				// On OpenBSD `clang --print-libgcc-file-name` returns "libgcc.a".
    				// In this case we fail to load libgcc.a and can encounter link
    				// errors - see if we can find libcompiler_rt.a instead.
    				*flagLibGCC = ctxt.findLibPathCmd("--print-file-name=libcompiler_rt.a", "libcompiler_rt")
    			}
    			if ctxt.HeadType == objabi.Hwindows {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		entry, e := direntLeToDirentUnix(&entryLE, d, path)
    		if e != nil {
    			return n, e
    		}
    
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    }
    
    // The doDemangle function is the entry point into the demangler proper.
    func doDemangle(name string, options ...Option) (ret AST, err error) {
    	// When the demangling routines encounter an error, they panic
    	// with a value of type demangleErr.
    	defer func() {
    		if r := recover(); r != nil {
    			if de, ok := r.(demangleErr); ok {
    				ret = nil
    				err = de
    				return
    			}
    			panic(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top