Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for BISECT (0.07 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    // changes provokes a failure, a program needs to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. ci/official/bisect.sh

    #     ci/official/wheel.sh
    #   TFCI: The env config path, relative to the TF root dir, e.g.
    #     ci/official/envs/an_env_config
    #
    # Note that you can combine bisect.sh with any.sh to bisect a single test:
    #
    #   export TFCI=...
    #   export TF_BISECT_SCRIPT=ci/official/any.sh
    #   export TF_BISECT_GOOD=a_good_commit_sha
    #   export TF_BISECT_BAD=a_failing_commit_sha
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/internal/bisect/bisect.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    // changes provokes a failure, a program needs to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. testing/performance/docs/performance-bisect.md

               ~/.gradle-bisect-override
    
    # check revision
    ./check_rev.sh RealWorldNativePluginPerformanceTest mediumNativeMonolithic
    ```
    
    Now you can use the script automatically with `git bisect`.
    
    ```bash
    git bisect start HEAD REL_2.14 --  # HEAD=bad REL_2.14=good
    git bisect run check_rev.sh RealWorldNativePluginPerformanceTest mediumNativeMonolithic
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. testing/performance/docs/check-rev.sh

    # example usage:
    # git bisect start HEAD REL_2.14 --  # HEAD=bad REL_2.14=good
    # git bisect run check_rev.sh JavaConfigurationPerformanceTest lotDependencies
    TESTNAME=${1:-IdeIntegrationPerformanceTest}
    TESTPROJECT=${2:-multi}
    ./gradlew clean
    [ -d ~/.gradle-bisect-override ] && cp -Rdvp ~/.gradle-bisect-override/* .
    [ -x ~/.gradle-bisect-override-script ] && ~/.gradle-bisect-override-script $TESTNAME $TESTPROJECT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	"time"
    
    	"golang.org/x/tools/internal/bisect"
    )
    
    // Preserve import of bisect, to allow [bisect.Match] in the doc comment.
    var _ bisect.Matcher
    
    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: bisect [flags] [var=value...] command [arguments...]\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func main() {
    	log.SetFlags(0)
    	log.SetPrefix("bisect: ")
    
    	var b Bisect
    	b.Stdout = os.Stdout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/tools/tools.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build tools
    
    package tools
    
    // Arrange to vendor the bisect command for use
    // by the internal/godebug package test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 323 bytes
    - Viewed (0)
  8. src/internal/godebug/godebug_test.go

    	if err != nil {
    		t.Fatalf("exec bisect: %v\n%s", err, out)
    	}
    
    	var want []string
    	src, err := os.ReadFile("godebug_test.go")
    	for i, line := range strings.Split(string(src), "\n") {
    		if strings.Contains(line, "BISECT"+" "+"BUG") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. src/internal/godebug/godebug.go

    }
    
    type setting struct {
    	value          atomic.Pointer[value]
    	nonDefaultOnce sync.Once
    	nonDefault     atomic.Uint64
    	info           *godebugs.Info
    }
    
    type value struct {
    	text   string
    	bisect *bisect.Matcher
    }
    
    // New returns a new Setting for the $GODEBUG setting with the given name.
    //
    // GODEBUGs meant for use by end users must be listed in ../godebugs/table.go,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/flag.go

    		}
    		concurrent := f.Tag.Get("concurrent")
    
    		switch ptr.(type) {
    		default:
    			panic(fmt.Sprintf("debug.%s has invalid type %v (must be int, string, or *bisect.Matcher)", f.Name, f.Type))
    		case *int, *string, **bisect.Matcher:
    			// ok
    		}
    		flag.tab[name] = debugField{name, help, concurrent == "ok", ptr}
    	}
    
    	return flag
    }
    
    func (f *DebugFlag) Set(debugstr string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top