Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 135 for Verbose (0.12 sec)

  1. src/cmd/fix/main_test.go

    		}
    		t.Cleanup(func() { reportCgoError = prevReportCgoError })
    	}
    
    	for _, tt := range testCases {
    		tt := tt
    		t.Run(tt.Name, func(t *testing.T) {
    			if tt.Version == "" {
    				if testing.Verbose() {
    					// Don't run in parallel: cmd/fix sometimes writes directly to stderr,
    					// and since -v prints which test is currently running we want that
    					// information to accurately correlate with the stderr output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcweb/vcstest/vcstest_test.go

    		// coverage.
    		resp, err := http.Get(srv.URL)
    		if err == nil {
    			var body []byte
    			body, err = io.ReadAll(resp.Body)
    			if err == nil && testing.Verbose() {
    				t.Logf("GET %s:\n%s", srv.URL, body)
    			}
    			resp.Body.Close()
    		}
    		if err != nil {
    			t.Error(err)
    		}
    
    		srv.Close()
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 16:04:21 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/version/version.go

    		// out, because they only make sense with arguments.
    		//
    		// Don't error if the flags came from GOFLAGS, since that can be
    		// a reasonable use case. For example, imagine GOFLAGS=-v to
    		// turn "verbose mode" on for all Go commands, which should not
    		// break "go version".
    		var argOnlyFlag string
    		if !base.InGOFLAGS("-m") && *versionM {
    			argOnlyFlag = "-m"
    		} else if !base.InGOFLAGS("-v") && *versionV {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/ToolingApiLoggingCrossVersionSpec.groovy

        def setup() {
            toolingApi.requireIsolatedToolingApi()
        }
    
        def cleanup() {
            toolingApi.close()
        }
    
        def "client receives same stdout and stderr when in verbose mode as if running from the command-line in debug mode"() {
            toolingApi.verboseLogging = true
    
            file("build.gradle") << """
    System.err.println "sys err logging xxx"
    
    println "println logging yyy"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. hack/lib/logging.sh

    }
    
    kube::log::install_errexit() {
      # trap ERR to provide an error handler whenever a command exits nonzero  this
      # is a more verbose version of set -o errexit
      trap 'kube::log::errexit' ERR
    
      # setting errtrace allows our ERR trap handler to be propagated to functions,
      # expansions and subshells
      set -o errtrace
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/BaseScalaCompileOptions.java

        }
    
        public void setListFiles(boolean listFiles) {
            this.listFiles = listFiles;
        }
    
        /**
         * Specifies the amount of logging.
         * Legal values:  none, verbose, debug
         */
        @Console
        public String getLoggingLevel() {
            return loggingLevel;
        }
    
        public void setLoggingLevel(String loggingLevel) {
            this.loggingLevel = loggingLevel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_flags.txt

    env GO111MODULE=on
    
    [short] skip
    
    # Arguments after the flag terminator should be ignored.
    # If we pass '-- -test.v', we should not get verbose output
    # *and* output from the test should not be echoed.
    go test ./x -- -test.v
    stdout '\Aok\s+example.com/x\s+[0-9.s]+\n\z'
    ! stderr .
    
    # For backward-compatibility with previous releases of the 'go' command,
    # arguments that appear after unrecognized flags should not be treated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/internal/types/errors/codes_test.go

    		for _, bad := range forbiddenInComment {
    			if strings.Contains(lowerComment, bad) {
    				t.Errorf("doc for %q contains forbidden word %q", name, bad)
    			}
    		}
    	})
    
    	if testing.Verbose() {
    		var totChars, totCount int
    		for chars, count := range nameHist {
    			totChars += chars * count
    			totCount += count
    		}
    		avg := float64(totChars) / float64(totCount)
    		fmt.Println()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    //
    // A perfect hash seemed like overkill.
    //
    // The compiler's switch statement is the clear winner
    // as it produces a binary tree in code,
    // with constant conditions and good branch prediction.
    // (Sadly it is the most verbose in source code.)
    // Binary search suffered from poor branch prediction.
    func typeOf(n ast.Node) uint64 {
    	// Fast path: nearly half of all nodes are identifiers.
    	if _, ok := n.(*ast.Ident); ok {
    		return 1 << nIdent
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/covdata/covdata.go

    package main
    
    import (
    	"cmd/internal/cov"
    	"cmd/internal/pkgpattern"
    	"cmd/internal/telemetry"
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"strings"
    )
    
    var verbflag = flag.Int("v", 0, "Verbose trace output level")
    var hflag = flag.Bool("h", false, "Panic on fatal errors (for stack trace)")
    var hwflag = flag.Bool("hw", false, "Panic on warnings (for stack trace)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top