Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 260 for interesting (0.2 sec)

  1. src/runtime/race.go

    //go:nosplit
    func racewriterangepc(addr unsafe.Pointer, sz, callpc, pc uintptr) {
    	gp := getg()
    	if gp != gp.m.curg {
    		// The call is coming from manual instrumentation of Go code running on g0/gsignal.
    		// Not interesting.
    		return
    	}
    	if callpc != 0 {
    		racefuncenter(callpc)
    	}
    	racewriterangepc1(uintptr(addr), sz, pc)
    	if callpc != 0 {
    		racefuncexit()
    	}
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    				lineNo = n
    			}
    		} else if filePath := javaLocationPathRx.FindStringSubmatch(jloc[2]); len(filePath) == 3 {
    			// If there's not a file:line, it's a shared library path.
    			// The path isn't interesting, so just give the .so.
    			lineFunc, lineFile = filePath[1], filepath.Base(filePath[2])
    		} else if strings.Contains(jloc[2], "generated stub/JIT") {
    			lineFunc = "STUB"
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/gen/cmpConstGen.go

    		Int(minI8 - 1),
    		Int(minI16 + 1),
    		Int(minI16),
    		Int(minI16 - 1),
    		Int(minI32 + 1),
    		Int(minI32),
    		Int(minI32 - 1),
    		Int(minI64 + 1),
    		Int(minI64),
    
    		// other possibly interesting values
    		Uint(1),
    		Int(-1),
    		Uint(0xff << 56),
    		Uint(0xff << 32),
    		Uint(0xff << 24),
    	}
    	sort.Slice(values, func(i, j int) bool { return values[i].Cmp(values[j]) == -1 })
    	var ret []*big.Int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate_test.go

    	expected = []string{"-command", "CMD0", "ab${_X}cd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    	// Now the interesting part, record that output as a command
    	g.setShorthand(got)
    
    	// see that the command still substitutes correctly from env. variable
    	inLine = "//go:generate CMD0"
    	expected = []string{"abYcd"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    Because most modules are currently published without Gradle Module Metadata, capabilities are not always automatically discovered by Gradle.
    It is however interesting to use _rules_ to declare component capabilities in order to discover conflicts as soon as possible, during the build instead of runtime.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	}
    	for _, ut := range UnitTypes {
    		if v, u, ok := ut.convertUnit(value, fromUnit, toUnit); ok {
    			return v, u
    		}
    	}
    	// Skip non-interesting units.
    	switch toUnit {
    	case "count", "sample", "unit", "minimum", "auto":
    		return float64(value), ""
    	default:
    		return float64(value), toUnit
    	}
    }
    
    // Label returns the label used to describe a certain measurement.
    func Label(value int64, unit string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    	InterestingDuration time.Duration
    
    	// Count is the number of values tested.
    	Count int64
    
    	// CoverageData is set if the value in shared memory expands coverage
    	// and therefore may be interesting to the coordinator.
    	CoverageData []byte
    
    	// Err is the error string caused by the value in shared memory, which is
    	// non-empty if the value in shared memory caused a crash.
    	Err string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    * Execute a build and listen to stdout and stderr logging and progress messages (e.g. the messages shown in the 'status bar' when you run on the command line).
    * Execute a specific test class or test method.
    * Receive interesting events as a build executes, such as project configuration, task execution or test execution.
    * Cancel a build that is running.
    * Combine multiple separate Gradle builds into a single composite build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/examples/types.go

    type T2a struct {
    	f struct {
    		g A2
    	}
    }
    type A2 = int
    
    var x1a T1a
    var x2a T2a
    
    func _() {
    	x1a = x2a // ERROR "assignment"
    	x1a.f = x2a.f
    }
    
    // Another interesting corner case are generic types that don't use
    // their type arguments. For instance:
    type T[P any] struct{}
    
    var xint T[int]
    var xbool T[bool]
    
    // Are these two variables of the same type? After all, their underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/scoring.go

    // fall broadly into three categories:
    //
    // 1) adjustments based solely on the callsite context (ex: call
    // appears on panic path)
    //
    // 2) adjustments that take into account specific interesting values
    // passed at a call site (ex: passing a constant that could result in
    // cprop/deadcode in the caller)
    //
    // 3) adjustments that take into account values returned from the call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top