Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 126 of 126 for Verbose (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    BUILD SUCCESSFUL in 1s
    8 actionable tasks: 8 executed
    ----
    
    Add `org.gradle.caching=true` to the `gradle.properties` file:
    
    .gradle.properties
    [source,properties]
    ----
    org.gradle.console=verbose
    org.gradle.caching=true
    ----
    
    == Step 3. Using the Local Build Cache
    Run the build task to populate the local Build Cache:
    [source,text]
    ----
    $ ./gradlew :app:build
    
    > Task :app:compileJava UP-TO-DATE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/objdump/objdump_test.go

    			ok = false
    		}
    	}
    	if goarch == "386" {
    		if strings.Contains(text, "(IP)") {
    			t.Errorf("disassembly contains PC-Relative addressing on 386")
    			ok = false
    		}
    	}
    
    	if !ok || testing.Verbose() {
    		t.Logf("full disassembly:\n%s", text)
    	}
    }
    
    func testGoAndCgoDisasm(t *testing.T, printCode bool, printGnuAsm bool) {
    	t.Parallel()
    	testDisasm(t, "fmthello.go", printCode, printGnuAsm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/go/doc/testdata/testing.1.golden

    		// full test of the package.
    		short	= flag.Bool("test.short", false, "run smaller test suite to save time")
    	
    		// Report as tests are run; default is silent for success.
    		chatty		= flag.Bool("test.v", false, "verbose: print additional output")
    		match		= flag.String("test.run", "", "regular expression to select tests to run")
    		memProfile	= flag.String("test.memprofile", "", "write a memory profile to the named file after execution")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/printer_test.go

    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		if got := String(ast); got != test[1] {
    			t.Errorf("%q: got %q", test[1], got)
    		}
    	}
    }
    
    func testOut() io.Writer {
    	if testing.Verbose() {
    		return os.Stdout
    	}
    	return io.Discard
    }
    
    func dup(s string) [2]string { return [2]string{s, s} }
    
    var exprTests = [][2]string{
    	// basic type literals
    	dup("x"),
    	dup("true"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 17:08:18 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. src/log/syslog/syslog_test.go

    			// sockaddr_un passed to the underlying system calls, so we use
    			// os.MkdirTemp instead of t.TempDir: t.TempDir generally includes all or
    			// part of the test name in the directory, which can be much more verbose
    			// and risks running up against the limit.
    			dir, err := os.MkdirTemp("", "")
    			if err != nil {
    				t.Fatal(err)
    			}
    			t.Cleanup(func() {
    				if err := os.RemoveAll(dir); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/internal/objabi/flag.go

    	os.Exit(0)
    	return nil
    }
    
    // count is a flag.Value that is like a flag.Bool and a flag.Int.
    // If used as -name, it increments the count, but -name=x sets the count.
    // Used for verbose flag -v.
    type count int
    
    func (c *count) String() string {
    	return fmt.Sprint(int(*c))
    }
    
    func (c *count) Set(s string) error {
    	switch s {
    	case "true":
    		*c++
    	case "false":
    		*c = 0
    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