Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,860 for printsp (0.11 sec)

  1. cmd/kubeadm/app/util/output/output.go

    	return fmt.Fprintln(writer, args...)
    }
    
    // Printf is a wrapper around fmt.Printf
    func (tp *TextPrinter) Printf(format string, args ...interface{}) (n int, err error) {
    	return fmt.Printf(format, args...)
    }
    
    // Println is a wrapper around fmt.Printf
    func (tp *TextPrinter) Println(args ...interface{}) (n int, err error) {
    	return fmt.Println(args...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(signed char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(const unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    inline void PrintTo(unsigned char* s, ::std::ostream* os) {
      PrintTo(ImplicitCast_<const void*>(s), os);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  4. test/live_regabi.go

    			printnl()
    		}
    		printnl()
    	}
    	printnl()
    }
    
    // issue 8097: mishandling of x = x during return.
    
    func f39() (x []int) {
    	x = []int{1}
    	printnl() // ERROR "live at call to printnl: .autotmp_[0-9]+$"
    	return x
    }
    
    func f39a() (x []int) {
    	x = []int{1}
    	printnl() // ERROR "live at call to printnl: .autotmp_[0-9]+$"
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. test/print.out

    Anfernee Yongkun Gui <******@****.***> 1505455580 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 26 04:08:38 UTC 2017
    - 247 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/print.css

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/print.mlir

    // RUN: tf-opt %s --tf-print | FileCheck %s
    
    module {
    // Smoke test. We don't expect any modifications of the MLIR.
    
    // CHECK-LABEL: foo
    // CHECK: return
    func.func @foo(%arg0: tensor<f32>, %arg1: tensor<f32>) -> tensor<f32> {
      return %arg0 : tensor<f32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 23:15:17 UTC 2023
    - 260 bytes
    - Viewed (0)
  8. src/net/http/internal/ascii/print.go

    cui fliter <******@****.***> 1699282712 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/go/printer/testdata/comments2.golden

    	   c3c
    	*/
    	/* foo
    	   c3d
    	*/
    	/*
    	   c3e
    	   foo */
    	/*
    	   c3f
    	   foo */
    }
    
    // Test case taken literally from issue 1835.
    func main() {
    	/*
    	   prints test 5 times
    	*/
    	for i := 0; i < 5; i++ {
    		println("test")
    	}
    }
    
    func issue5623() {
    L:
    	_ = yyyyyyyyyyyyyyyy			// comment - should be aligned
    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	/* comment */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/go/printer/testdata/comments2.input

    */
    /* foo
    c3c
    */
    /* foo
       c3d
    */
    /*
    c3e
    foo */
    /*
       c3f
       foo */
    }
    
    // Test case taken literally from issue 1835.
    func main() {
    /*
    prints test 5 times
    */
       for i := 0; i < 5; i++ {
          println("test")
       }
    }
    
    func issue5623() {
    L:
       _ = yyyyyyyyyyyyyyyy // comment - should be aligned
       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx /* comment */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 00:06:54 UTC 2017
    - 2.3K bytes
    - Viewed (0)
Back to top