Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 260 for interesting (0.49 sec)

  1. 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)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

     private:
      const int signum_;
    };
    # endif  // !GTEST_OS_WINDOWS
    
    // EXPECT_DEBUG_DEATH asserts that the given statements die in debug mode.
    // The death testing framework causes this to have interesting semantics,
    // since the sideeffects of the call are only visible in opt mode, and not
    // in debug mode.
    //
    // In practice, this can be used to test functions that utilize the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		}
    		return sp.sym.MatchString(line.Function.Name) ||
    			sp.sym.MatchString(line.Function.SystemName) ||
    			sp.sym.MatchString(line.Function.Filename)
    	}
    
    	// Extract sample counts and compute set of interesting functions.
    	for _, sample := range rpt.prof.Sample {
    		value := rpt.options.SampleValue(sample.Value)
    		if rpt.options.SampleMeanDivisor != nil {
    			div := rpt.options.SampleMeanDivisor(sample.Value)
    			if div != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  4. src/internal/fuzz/encoding.go

    		// corpus may include 64-bit values produced by fuzzing runs on 64-bit
    		// architectures. When running those tests, we implicitly wrap the values to
    		// fit in a regular int. (The test case is still “interesting”, even if the
    		// specific values of its inputs are platform-dependent.)
    		i, err := strconv.ParseInt(val, 0, 64)
    		return int(i), err
    	case "int8":
    		i, err := strconv.ParseInt(val, 0, 8)
    		return int8(i), err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  5. src/cmd/trace/gen.go

    	"internal/trace/traceviewer"
    	"strings"
    )
    
    // generator is an interface for generating a JSON trace for the trace viewer
    // from a trace. Each method in this interface is a handler for a kind of event
    // that is interesting to render in the UI via the JSON trace.
    type generator interface {
    	// Global parts.
    	Sync() // Notifies the generator of an EventSync event.
    	StackSample(ctx *traceContext, ev *trace.Event)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/go/doc/comment/text.go

    	// that are longer than max, which correspond to lines with
    	// single very long words. Having done that, it can move on to
    	// minimizing the lo score, which is more interesting.
    	//
    	// The lo score is the sum for each line of the square of the
    	// number of spaces remaining at the end of the line and a
    	// penalty of 64 given out for not ending the line in a
    	// punctuation character (.,:;).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    == Step 3. Review the Gradle Files
    
    The `settings.gradle(.kts)` file has two interesting lines:
    
    [.multi-language-sample]
    =====
    .settings.gradle.kts
    [source, kotlin]
    ----
    rootProject.name = "authoring-tutorial"
    include("app")
    ----
    =====
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. test/recover.go

    	defer withoutRecover()           // should be no-op, leaving for mustRecover to find
    	defer withoutRecoverRecursive(0) // ditto
    	panic(1)
    }
    
    // Repeat test1 with closures instead of standard function.
    // Interesting because recover bases its decision
    // on the frame pointer of its caller, and a closure's
    // frame pointer is in the middle of its actual arguments
    // (after the hidden ones for the closed-over variables).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  9. src/cmd/fix/typecheck.go

    // of expression relevant to a particular fix.
    //
    // TODO(rsc,gri): Replace with go/typechecker.
    // Doing that could be an interesting test case for go/typechecker:
    // the constraints about working with partial information will
    // likely exercise it in interesting ways. The ideal interface would
    // be to pass typecheck a map from importpath to package API text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 22:02:42 UTC 2022
    - 20.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fuse.go

    					v.Pos = v.Pos.WithIsStmt()
    					l = 0
    					break
    				}
    				if l < v.Pos.Line() {
    					// The order of values in a block is not specified so OOO in a block is not interesting,
    					// but they do all come before the end of the block, so this disqualifies attaching to end of b_next.
    					outOfOrder = true
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top