Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,871 for printsp (0.52 sec)

  1. src/cmd/go/internal/fmtcmd/fmt.go

    	Long: `
    Fmt runs the command 'gofmt -l -w' on the packages named
    by the import paths. It prints the names of the files that are modified.
    
    For more about gofmt, see 'go doc cmd/gofmt'.
    For more about specifying packages, see 'go help packages'.
    
    The -n flag prints commands that would be executed.
    The -x flag prints commands as they are executed.
    
    The -mod flag's value sets which module download mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

            System.setOut(new ThreadBoundPrintStream(this.originalSystemOUtStream));
            printer = new ConsolePrinter(segmentChunks);
            new Thread(printer).start();
            printer.waitUntilRunning(true);
        }
    
        public void close() {
            printer.waitUntilRunning(false);
            System.setOut(this.originalSystemOUtStream);
        }
    
        private void setNext() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. src/go/doc/comment/html.go

    type htmlPrinter struct {
    	*Printer
    	tight bool
    }
    
    // HTML returns an HTML formatting of the [Doc].
    // See the [Printer] documentation for ways to customize the HTML output.
    func (p *Printer) HTML(d *Doc) []byte {
    	hp := &htmlPrinter{Printer: p}
    	var out bytes.Buffer
    	for _, x := range d.Content {
    		hp.block(&out, x)
    	}
    	return out.Bytes()
    }
    
    // block prints the block x to out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    				switch val := cell.(type) {
    				case string:
    					print := val
    					truncated := false
    					// Truncate at the first newline, carriage return or formfeed
    					// (treated as a newline by tabwriter).
    					breakchar := strings.IndexAny(print, "\f\n\r")
    					if breakchar >= 0 {
    						truncated = true
    						print = print[:breakchar]
    					}
    					WriteEscaped(output, print)
    					if truncated {
    						fmt.Fprint(output, "...")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                    description = "Prints the message 'do something'"
                    doLast {
                        println 'do something'
                    }
                }
            """
    
            when:
            executeTaskViaTAPI(":other-build:tasks", "--all")
    
            then:
            assertHasBuildSuccessfulLogging()
            outputContains("doSomething - Prints the message 'do something'")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

                        try {
                            configurations.lax.files
                        } catch (Exception e) {
                            println "Lax failure swallowed"
                        }
    
                        // Try to resolve configuration "lax" again - this exception is printed
                        configurations.lax.files
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/Main.java

            Object copy = BeanUtils.cloneBean(message);
            System.out.println();
            System.out.println("Original: " + copy.toString());
            System.out.println("Copy:     " + copy.toString());
    
        }
    
        private static void printModuleDebug(Class<?> clazz) {
            System.out.println(clazz.getModule().getName() + " - " + clazz.getModule().getDescriptor().version().get());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    		table := &metav1.Table{
    			ColumnDefinitions: test.columns,
    			Rows:              test.rows,
    		}
    		// Print the table
    		out := bytes.NewBuffer([]byte{})
    		printer := NewTablePrinter(test.options)
    		printer.PrintObj(table, out)
    
    		// Validate the printed table is empty.
    		if len(out.String()) > 0 {
    			t.Errorf("Error Printing Table. Should be empty; got (%s)", out.String())
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/plan.go

    	_, _ = printer.Fprintln(writer, "")
    
    	if beforeKubeadmVersion != afterKubeadmVersion {
    		_, _ = printer.Fprintf(writer, "Note: Before you can perform this upgrade, you have to update kubeadm to %s.\n", afterKubeadmVersion)
    		_, _ = printer.Fprintln(writer, "")
    	}
    
    	printer.printLineSeparator(writer)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/antMigration/fileDeps/kotlin/src/main/java/org/example/app/HelloApp.java

    package org.example.app;
    
    /**
     * A simple Java application that prints "Hello, world!" to stdout.
     */
    public class HelloApp {
        /**
         * Application entry point.
         */
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 272 bytes
    - Viewed (0)
Back to top