Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,652 for printIt (0.23 sec)

  1. test/recover3.go

    	check("nil-deref-1", func() { println(p[1]) }, "nil pointer dereference")
    	check("nil-deref-big", func() { println(q[5000]) }, "nil pointer dereference")
    
    	i = 99999
    	var sl []int
    	p1 := new([10]int)
    	check("array-bounds", func() { println(p1[i]) }, "index out of range")
    	check("slice-bounds", func() { println(sl[i]) }, "index out of range")
    
    	var inter interface{}
    	inter = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            System.out.println("\n\n");
            System.out.println("Parent SCM URL is: " + project0.getScm().getUrl());
            System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
            System.out.println();
            System.out.println("Parent SCM connection is: " + project0.getScm().getConnection());
            System.out.println("Child SCM connection is: " + project1.getScm().getConnection());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. test/reorder2.go

    func main() {
    	err := 0
    	var t TT
    	if a("1")("2")("3"); log != "a(1)a(2)a(3)" {
    		println("expecting a(1)a(2)a(3) , got ", log)
    		err++
    	}
    	log = ""
    
    	if t.a("1").a(t.b("2")); log != "a(1)b(2)a(2)" {
    		println("expecting a(1)b(2)a(2), got ", log)
    		err++
    	}
    	log = ""
    	if a("3")(b("4"))(b("5")); log != "a(3)b(4)a(4)b(5)a(5)" {
    		println("expecting a(3)b(4)a(4)b(5)a(5), got ", log)
    		err++
    	}
    	log = ""
    	var i I = T1(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 7.2K bytes
    - Viewed (0)
  4. src/slices/example_test.go

    	grow := slices.Grow(numbers, 2)
    	fmt.Println(cap(numbers))
    	fmt.Println(grow)
    	fmt.Println(len(grow))
    	fmt.Println(cap(grow))
    	// Output:
    	// 4
    	// [0 42 -10 8]
    	// 4
    	// 8
    }
    
    func ExampleClip() {
    	a := [...]int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
    	s := a[:4:10]
    	clip := slices.Clip(s)
    	fmt.Println(cap(s))
    	fmt.Println(clip)
    	fmt.Println(len(clip))
    	fmt.Println(cap(clip))
    	// Output:
    	// 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtTypeProjectionRenderer.kt

                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    when (projection) {
                        is KaStarTypeProjection -> printer.append('*')
                        is KaTypeArgumentWithVariance -> {
                            " ".separated(
                                { printer.append(projection.variance.label) },
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtUnresolvedClassErrorTypeRenderer.kt

                type: KaClassErrorType,
                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    typeRenderer.annotationsRenderer.renderAnnotations(analysisSession, type, printer)
                    typeRenderer.classIdRenderer.renderClassTypeQualifier(analysisSession, type, type.qualifiers, typeRenderer, printer)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/configuration/Help.java

                output.println("' does not contain a Gradle build.");
                output.println();
                output.text("To create a new build in this directory, run ");
                metaData.describeCommand(output.withStyle(UserInput), "init");
                output.println();
                output.println();
                output.append("For more detail on the 'init' task, see ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestReportIntegrationTest.groovy

                        System.out.println("beforeTest out");
                        System.err.println("beforeTest err");
                    }
    
                    @Test public void m1() {
                        System.out.println("m1 out");
                        System.err.println("m1 err");
                    }
    
                    @Test public void m2() {
                        System.out.println("m2 out");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. test/abi/named_return_stuff.go

    	a, b, c := 1, 4, 16
    	x := F(&a, &b, &c)
    	fmt.Printf("x = %d\n", x)
    
    	y := H("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z := H("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    	fmt.Println()
    
    	y = K("Hello", "World!")
    	fmt.Println("len(y) =", len(y))
    	fmt.Println("y =", y)
    	z = K("Hello", "Pal!")
    	fmt.Println("len(z) =", len(z))
    	fmt.Println("z =", z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top