Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 961 for printsp (0.22 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig.go

    `,
    		Aliases: []string{"o"},
    		Args: func(cmd *cobra.Command, args []string) error {
    			if labelSelector == "" && len(args) < 1 {
    				cmd.Println(cmd.UsageString())
    				return fmt.Errorf("log requires pod name or --selector")
    			}
    			if reset && loggerLevelString != "" {
    				cmd.Println(cmd.UsageString())
    				return fmt.Errorf("--level cannot be combined with --reset")
    			}
    			if outputFormat != "" && outputFormat != summaryOutput {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyLifecycleIntegrationTest.groovy

                }
                def output = producer.output
                println("prop = " + output.get())
                task after {
                    dependsOn(producer)
                    doLast {
                        println("prop = " + output.get())
                    }
                }
                task before {
                    doLast {
                        println("prop = " + output.get())
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/GeneratePluginAdaptersTask.java

                writer.println("    @Override");
                writer.println("    public void apply(" + targetClass + " target) {");
                writer.println("        assertSupportedByCurrentGradleVersion();");
                writer.println("        try {");
                writer.println(firstPassCode);
                writer.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 22:50:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/flag/flag.go

    // for how to write your own usage function.
    
    // Usage prints a usage message documenting all defined command-line flags
    // to [CommandLine]'s output, which by default is [os.Stderr].
    // It is called when an error occurs while parsing flags.
    // The function is a variable that may be changed to point to a custom function.
    // By default it prints a simple header and calls [PrintDefaults]; for details about the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  5. src/regexp/example_test.go

    	fmt.Println(a.Split("banana", 1))
    	fmt.Println(a.Split("banana", 2))
    	zp := regexp.MustCompile(`z+`)
    	fmt.Println(zp.Split("pizza", -1))
    	fmt.Println(zp.Split("pizza", 0))
    	fmt.Println(zp.Split("pizza", 1))
    	fmt.Println(zp.Split("pizza", 2))
    	// Output:
    	// [b n n ]
    	// []
    	// [banana]
    	// [b nana]
    	// [pi a]
    	// []
    	// [pizza]
    	// [pi a]
    }
    
    func ExampleRegexp_Expand() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGXmlResultAndHtmlReportIntegrationTest.groovy

        @Test public void passing() {
            System.out.println("out.pass");
            System.err.println("err.pass");
        }
        @Test public void failing() {
            System.out.println("out.fail");
            System.err.println("err.fail");
            fail("failing!");
        }
        @Test public void passing2() {
            System.out.println("out.pass2");
            System.err.println("err.pass2");
        }
        @Test public void failing2() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 21:27:42 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/token_test.go

    			printer, err := outputFlags.ToPrinter()
    			if err != nil {
    				t.Errorf("can't create printer for output format %s: %+v", tc.outputFormat, err)
    			}
    
    			if err := printer.PrintObj(&token, &buf); err != nil {
    				t.Errorf("unable to print token %s: %+v", token.Token, err)
    			}
    
    			actual := buf.String()
    			if actual != tc.expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

        inputs.files artifacts.artifactFiles
        doLast {
            println "files: " + artifacts.collect { it.file.name }
            println "artifacts: " + artifacts.collect { it.file.name + " (" + it.id.componentIdentifier + ")" }
            println "components: " + artifacts.collect { it.id.componentIdentifier }
            println "variants: " + artifacts.collect { it.variant.attributes }
            println "content: " + artifacts.collect { it.file.text }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

                    abstract Params getParams()
    
                    @TaskAction
                    void go() {
                        println("count = \${params.count.get()}")
                    }
                }
    
                tasks.create("thing", MyTask) {
                    println("params = \$params")
                    println("params.count = \$params.count")
                    params.count = 12
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. test/64bit.go

    	"		if n, op, want := a % b, `%`, mod; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    	"	}\n" +
    	"	if n, op, want := a & b, `&`, and; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    	"	if n, op, want := a | b, `|`, or; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
Back to top