Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,505 for printsp (0.7 sec)

  1. 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)
  2. 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)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            }
    
            @Override
            public void writeCodeTo(PrettyPrinter printer) {
                if (catalogReference) {
                    printer.println(printer.syntax.dependencySpec(configuration, dependencyOrCatalogReference));
                } else {
                    printer.println(printer.syntax.dependencySpec(configuration, printer.syntax.string(dependencyOrCatalogReference)));
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/antMigration/fileDeps/groovy/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)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/rich/RichConsoleBasicGroupedTaskLoggingFunctionalTest.groovy

        }
    
        def "configure project group header is printed red if configuration fails with additional failures"() {
            given:
            buildFile << """
                afterEvaluate {
                    println "executing after evaluate..."
                    throw new RuntimeException("After Evaluate Failure...")
                }
                throw new RuntimeException('Config Failure...')
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/config.go

    // Run runs the images command and writes the result to the io.Writer passed in
    func (i *ImagesList) Run(out io.Writer, printer output.Printer) error {
    	imgs := images.GetControlPlaneImages(&i.cfg.ClusterConfiguration)
    
    	if err := printer.PrintObj(&outputapiv1alpha3.Images{Images: imgs}, out); err != nil {
    		return errors.Wrap(err, "unable to print images")
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors.kt

    }
    
    
    internal
    fun printAccessorsFor(schema: TypedProjectSchema) {
        for (sourceFragment in accessorSourceFragmentsFor(schema)) {
            println()
            println(sourceFragment.replaceIndent("    "))
            println()
        }
    }
    
    
    private
    fun accessorSourceFragmentsFor(schema: TypedProjectSchema): Sequence<String> =
        accessorsFor(schema.map(::accessible)).flatMap { accessor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/log/log.go

    		})
    	}
    }
    
    // Print calls l.Output to print to the logger.
    // Arguments are handled in the manner of [fmt.Print].
    func (l *Logger) Print(v ...any) {
    	l.output(0, 2, func(b []byte) []byte {
    		return fmt.Append(b, v...)
    	})
    }
    
    // Printf calls l.Output to print to the logger.
    // Arguments are handled in the manner of [fmt.Printf].
    func (l *Logger) Printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. src/os/signal/example_unix_test.go

    	// This example simulates that by sending a SIGINT signal to itself.
    	if err := p.Signal(os.Interrupt); err != nil {
    		log.Fatal(err)
    	}
    
    	select {
    	case <-neverReady:
    		fmt.Println("ready")
    	case <-ctx.Done():
    		fmt.Println(ctx.Err()) // prints "context canceled"
    		stop()                 // stop receiving signal notifications as soon as possible.
    	}
    
    	// Output:
    	// context canceled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testKit/spockQuickstart/groovy/src/test/groovy/org/gradle/sample/BuildLogicFunctionalTest.groovy

            buildFile = new File(testProjectDir, 'build.gradle')
        }
    
        def "hello world task prints hello world"() {
            given:
            settingsFile << "rootProject.name = 'hello-world'"
            buildFile << """
                task helloWorld {
                    doLast {
                        println 'Hello world!'
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top