Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for printsp (0.21 sec)

  1. 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)
  2. src/go/printer/nodes.go

    		p.print(token.SWITCH)
    		p.controlClause(false, s.Init, s.Tag, nil)
    		p.block(s.Body, 0)
    
    	case *ast.TypeSwitchStmt:
    		p.print(token.SWITCH)
    		if s.Init != nil {
    			p.print(blank)
    			p.stmt(s.Init, false)
    			p.print(token.SEMICOLON)
    		}
    		p.print(blank)
    		p.stmt(s.Assign, false)
    		p.print(blank)
    		p.block(s.Body, 0)
    
    	case *ast.CommClause:
    		if s.Comm != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	}
    	print("goroutine ", gp.goid)
    	if gp.m != nil && gp.m.throwing >= throwTypeRuntime && gp == gp.m.curg || level >= 2 {
    		print(" gp=", gp)
    		if gp.m != nil {
    			print(" m=", gp.m.id, " mp=", gp.m)
    		} else {
    			print(" m=nil")
    		}
    	}
    	print(" [", status)
    	if isScan {
    		print(" (scan)")
    	}
    	if waitfor >= 1 {
    		print(", ", waitfor, " minutes")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    	if len(pkgs) == 0 {
    		panic("no packages")
    	}
    	return pkgs
    }
    
    // printSkip prints a skip message for all of goTest.
    func (opts *goTest) printSkip(t *tester, msg string) {
    	if t.json {
    		enc := json.NewEncoder(os.Stdout)
    		for _, pkg := range opts.packages() {
    			synthesizeSkipEvent(enc, pkg, msg)
    		}
    		return
    	}
    	fmt.Println(msg)
    }
    
    // ranGoTest and stdMatches are state closed over by the stdlib
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    package test passes, go test prints only the final 'ok' summary
    line. If a package test fails, go test prints the full test output.
    If invoked with the -bench or -v flag, go test prints the full
    output even for passing package tests, in order to display the
    requested benchmark results or verbose logging. After the package
    tests for all of the listed packages finish, and their output is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/testing/testing.go

    	} else {
    		if c.chatty != nil {
    			if c.bench {
    				// Benchmarks don't print === CONT, so we should skip the test
    				// printer and just print straight to stdout.
    				fmt.Print(c.decorate(s, depth+1))
    			} else {
    				c.chatty.Printf(c.name, "%s", c.decorate(s, depth+1))
    			}
    
    			return
    		}
    		c.output = append(c.output, c.decorate(s, depth+1)...)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     *
     * As another example, this code prints the human-readable query parameters of a Twitter search:
     *
     * ```java
     * HttpUrl url = HttpUrl.parse("https://twitter.com/search?q=cute%20%23puppies&f=images");
     * for (int i = 0, size = url.querySize(); i < size; i++) {
     *   System.out.println(url.queryParameterName(i) + ": " + url.queryParameterValue(i));
     * }
     * ```
     *
     * which prints:
     *
     * ```
     * q: cute #puppies
     * f: images
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        def input = inputArtifact.get().asFile
                        if (input.exists()) {
                            println "processing \${input.name}"
                        } else {
                            println "processing missing \${input.name}"
                        }
                        def output = outputs.file(input.name + ".green")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    println("provider = ${provider.asText.get()}")
                }
    
                new FileInputStream("fis-path.txt").withCloseable { fis ->
                    println("fis = ${fis.text}")
                }
    
                new FileInputStream(new File("fis-file.txt")).withCloseable { fis ->
                    println("fis = ${fis.text}")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                def count = provider.map { it.increment() + 10 }
    
                task first {
                    doFirst {
                        println("got value = " + count.get())
                    }
                }
    
                task second {
                    doFirst {
                        println("got value = " + count.get())
                    }
                }
            """
    
            when:
            run("first", "second")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top