Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,860 for printsp (0.2 sec)

  1. src/runtime/debuglog.go

    	r.begin++
    
    	switch typ {
    	default:
    		print("<unknown field type ", hex(typ), " pos ", r.begin-1, " end ", r.end, ">\n")
    		return false
    
    	case debugLogUnknown:
    		print("<unknown kind>")
    
    	case debugLogBoolTrue:
    		print(true)
    
    	case debugLogBoolFalse:
    		print(false)
    
    	case debugLogInt:
    		print(r.varint())
    
    	case debugLogUint:
    		print(r.uvarint())
    
    	case debugLogHex, debugLogPtr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsCompatibilityIntegrationTest.groovy

                    }
    
                    def "hello world task prints hello world"() {
                        given:
                        buildFile << '''
                            task helloWorld {
                                doLast {
                                    println 'Hello world!'
                                }
                            }
                        '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/compute.go

    // kinds of upgrades can be performed
    func GetAvailableUpgrades(versionGetterImpl VersionGetter, experimentalUpgradesAllowed, rcUpgradesAllowed bool, client clientset.Interface, printer output.Printer) ([]Upgrade, error) {
    	printer.Printf("[upgrade] Fetching available versions to upgrade to\n")
    
    	// Collect the upgrades kubeadm can do in this list
    	var upgrades []Upgrade
    
    	// Get the kube-apiserver versions in the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/kubectl/cmd/convert/convert.go

    		The default output will be printed to stdout in YAML format. One can use -o option
    		to change to output destination.`))
    
    	convertExample = templates.Examples(i18n.T(`
    		# Convert 'pod.yaml' to latest version and print to stdout.
    		kubectl convert -f pod.yaml
    
    		# Convert the live state of the resource specified by 'pod.yaml' to the latest version
    		# and print to stdout in JSON format.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  5. src/go/printer/testdata/comments.golden

    	f0()
    }
    
    func _() {
    	// this comment should be properly indented
    }
    
    func _(x int) int {
    	if x < 0 {	// the tab printed before this comment's // must not affect the remaining lines
    		return -x	// this statement should be properly indented
    	}
    	if x < 0 {	/* the tab printed before this comment's /* must not affect the remaining lines */
    		return -x	// this statement should be properly indented
    	}
    	return x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/token.go

    	createCmd.Flags().BoolVar(&printJoinCommand,
    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    package main
    
    /*
    int meaningOfLife() { return 42; }
    */
    import "C"
    
    func main() {
         println(C.meaningOfLife())
    }
    
    -- nonMainPackageUsesExplicitCgo/main.go --
    
    package p
    
    /*
    int meaningOfLife() { return 42; }
    */
    import "C"
    
    func PrintIt() {
         println(C.meaningOfLife())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/go/types/gotype.go

    	errorCount++
    }
    
    // parse may be called concurrently.
    func parse(filename string, src any) (*ast.File, error) {
    	if *verbose {
    		fmt.Println(filename)
    	}
    	file, err := parser.ParseFile(fset, filename, src, parserMode) // ok to access fset concurrently
    	if *printAST {
    		ast.Print(fset, file)
    	}
    	return file, err
    }
    
    func parseStdin() (*ast.File, error) {
    	src, err := io.ReadAll(os.Stdin)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

        private DaemonClientFixture client
    
        def setup() {
            blockingHttpServer.start()
            if (OperatingSystem.current().windows) {
                // The killed worker on Windows will cause a broken pipe error to be printed to the console,
                // so we disable stack trace checks to avoid the test failing.
                executer.withStackTraceChecksDisabled()
            }
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. cmd/server-startup-msg.go

    	}
    
    	strippedAPIEndpoints := stripStandardPorts(apiEndpoints, globalMinioHost)
    
    	// Prints credential, region and browser access.
    	printServerCommonMsg(strippedAPIEndpoints)
    
    	// Prints `mc` cli configuration message chooses
    	// first endpoint as default.
    	printCLIAccessMsg(strippedAPIEndpoints[0], "myminio")
    
    	// Prints documentation message.
    	printObjectAPIMsg()
    }
    
    // Returns true if input is IPv6
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top