Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 309 for printuint (0.43 sec)

  1. test/fixedbugs/issue11053.dir/p_test.go

    	s.Add(out) // not inlined.
    	return out
    }
    
    var s T
    
    func main() {
    	println("Starting")
    	fmt.Sprint(new(int32))
    	resp := F(s).(*P)
    	println("Before, *resp.V=", *resp.V) // Trashes *resp.V in process of printing.
    	println("After,  *resp.V=", *resp.V)
    	if got, want := *resp.V, int32(42); got != want {
    		fmt.Printf("FAIL, got %v, want %v", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 828 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    	// remove trailing blank lines
    	b := pr.Bytes()
    	for len(b) > 0 && b[len(b)-1] == '\n' && (len(b) == 1 || b[len(b)-2] == '\n') {
    		b = b[:len(b)-1]
    	}
    	return b
    }
    
    // A printer collects the state during printing of a file or expression.
    type printer struct {
    	bytes.Buffer           // output buffer
    	comment      []Comment // pending end-of-line comments
    	margin       int       // left margin (indent), a number of tabs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/problems/failure/FailurePrinterListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.problems.failure;
    
    /**
     * Listener for steps in the process of printing a failure by {@link FailurePrinter}.
     */
    public interface FailurePrinterListener {
    
        FailurePrinterListener NO_OP = new FailurePrinterListener() {
            @Override
            public void beforeFrames() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:45:41 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. hack/lib/logging.sh

      # expansions and subshells
      set -o errtrace
    }
    
    # Print out the stack trace
    #
    # Args:
    #   $1 The number of stack frames to skip when printing.
    kube::log::stack() {
      local stack_skip=${1:-0}
      stack_skip=$((stack_skip + 1))
      if [[ ${#FUNCNAME[@]} -gt ${stack_skip} ]]; then
        echo "Call stack:" >&2
        local i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/Exec.java

     *   workingDir '../tomcat/bin'
     *
     *   //on windows:
     *   commandLine 'cmd.exe', '/d', '/c', 'stop.bat'
     *
     *   //on linux
     *   commandLine './stop.sh'
     *
     *   //store the output instead of printing to the console:
     *   standardOutput = new ByteArrayOutputStream()
     *
     *   //extension method stopTomcat.output() can be used to obtain the output:
     *   ext.output = {
     *     return standardOutput.toString()
     *   }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/JavadocOutputLevel.java

         * messages appear for loading the source files, generating the documentation (one message per source file), and sorting.
         * The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
         */
        VERBOSE,
        /**
         * -quiet
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestOutputEvent.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.events.test;
    
    import org.gradle.tooling.events.ProgressEvent;
    
    /**
     * An event that informs about a test printing text to the standard output or to the standard error.
     * <p>
     * A new test output event instance is created for each line of text printed by the test.
     *
     * @since 6.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

    import org.gradle.internal.DeprecatedInGradleScope;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * Listens to the output events like printing to standard output or error
     */
    @EventScope(Scope.Build.class)
    @DeprecatedInGradleScope
    public interface TestOutputListener {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/fmt/doc.go

    /*
    Package fmt implements formatted I/O with functions analogous
    to C's printf and scanf.  The format 'verbs' are derived from C's but
    are simpler.
    
    # Printing
    
    The verbs:
    
    General:
    
    	%v	the value in a default format
    		when printing structs, the plus flag (%+v) adds field names
    	%#v	a Go-syntax representation of the value
    		(floating-point infinities and NaNs print as ±Inf and NaN)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    // TypeString returns the string representation of typ.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    func TypeString(typ Type, qf Qualifier) string {
    	var buf bytes.Buffer
    	WriteType(&buf, typ, qf)
    	return buf.String()
    }
    
    // WriteType writes the string representation of typ to buf.
    // The [Qualifier] controls the printing of
    // package-level objects, and may be nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top