Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,571 for printIt (0.17 sec)

  1. 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)
  2. cmd/kubeadm/app/util/dryrun/dryrun.go

    		}
    	} else {
    		fmt.Printf("[dryrun] Wrote certificates and kubeconfig files to the %q directory\n", manifestDir)
    	}
    
    	fmt.Println("[dryrun] The certificates or kubeconfig files would not be printed due to their sensitive nature")
    	fmt.Printf("[dryrun] Please examine the %q directory for details about what would be written\n", manifestDir)
    
    	// Print kubelet config manifests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/tool/tool.go

    		signal.Stop(c)
    		close(c)
    	}
    	if err != nil {
    		// Only print about the exit status if the command
    		// didn't even run (not an ExitError) or it didn't exit cleanly
    		// or we're printing command lines too (-x mode).
    		// Assume if command exited cleanly (even with non-zero status)
    		// it printed any messages it wanted to print.
    		if e, ok := err.(*exec.ExitError); !ok || !e.Exited() || cfg.BuildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/health.go

    // - (if static pod-hosted) that all required Static Pod manifests exist on disk
    func CheckClusterHealth(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration, ignoreChecksErrors sets.Set[string], printer output.Printer) error {
    	_, _ = printer.Println("[upgrade] Running cluster health checks")
    
    	healthChecks := []preflight.Checker{
    		&healthCheck{
    			name:   "CreateJob",
    			client: client,
    			cfg:    cfg,
    			f:      createJob,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. releasenotes/notes/istioctl-pc-routes-print-path-separated-prefix.yaml

    Jacek Ewertowski <******@****.***> 1701261434 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 174 bytes
    - Viewed (0)
  8. src/path/filepath/example_unix_test.go

    	fmt.Println(filepath.Base("/foo/bar/baz.js"))
    	fmt.Println(filepath.Base("/foo/bar/baz"))
    	fmt.Println(filepath.Base("/foo/bar/baz/"))
    	fmt.Println(filepath.Base("dev.txt"))
    	fmt.Println(filepath.Base("../todo.txt"))
    	fmt.Println(filepath.Base(".."))
    	fmt.Println(filepath.Base("."))
    	fmt.Println(filepath.Base("/"))
    	fmt.Println(filepath.Base(""))
    
    	// Output:
    	// On Unix:
    	// baz.js
    	// baz
    	// baz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  9. test/method.go

    		println("i.val:", i.val())
    		panic("fail")
    	}
    	if I.val(i) != 3 {
    		println("I.val(i):", I.val(i))
    		panic("fail")
    	}
    	if (*I).val(&i) != 3 {
    		println("(*I).val(&i):", (*I).val(&i))
    		panic("fail")
    	}
    	if pi.val() != 4 {
    		println("pi.val:", pi.val())
    		panic("fail")
    	}
    	if (*I1).val(pi) != 4 {
    		println("(*I1).val(pi):", (*I1).val(pi))
    		panic("fail")
    	}
    	if t.val() != 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 11 23:20:52 UTC 2013
    - 5.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/toolingApi/idea/groovy/src/main/java/org/gradle/sample/Main.java

                System.out.println("***");
                System.out.println("Project details: ");
                System.out.println(project);
    
                System.out.println("***");
                System.out.println("Project modules: ");
                for(IdeaModule module: project.getModules()) {
                    System.out.println("  " + module);
                    System.out.println("  module details:");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top