Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 961 for printsp (0.27 sec)

  1. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        System.out.println("action = " + action);
                        System.out.println("projectDir = " + projectDir);
                        System.out.println("gradleVersion = " + gradleVersion);
                        System.out.println("javaHome = " + javaHome);
                        System.out.println("gradleUserHome = " + gradleUserHome);
                        System.out.println("allow unusable daemons = " + allowUnusable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. docs/recipes.md

              if (!it.isSuccessful) throw IOException("Unexpected code $it")
    
              println("Response 2 response:          $it")
              println("Response 2 cache response:    ${it.cacheResponse}")
              println("Response 2 network response:  ${it.networkResponse}")
              return@use it.body!!.string()
            }
    
            println("Response 2 equals Response 1? " + (response1Body == response2Body))
          }
        ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                println("previous value = \$oldValue")
    
                // Attempt to capture the modified property value.
                println("configuration time value=\${System.getProperty("java.awt.headless")}")
    
                tasks.register("printProperty") {
                    doLast {
                        println("execution time value=\${System.getProperty("java.awt.headless")}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. src/runtime/debug/garbage.go

    func WriteHeapDump(fd uintptr)
    
    // SetTraceback sets the amount of detail printed by the runtime in
    // the traceback it prints before exiting due to an unrecovered panic
    // or an internal runtime error.
    // The level argument takes the same values as the GOTRACEBACK
    // environment variable. For example, SetTraceback("all") ensure
    // that the program prints all goroutines when it crashes.
    // See the package runtime documentation for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildEventsIntegrationTest.groovy

                        println '# buildListener.settingsEvaluated [:' + buildName + ']'
                    }
                    void projectsLoaded(Gradle gradle) {
                        println '# buildListener.projectsLoaded [' + gradle.identityPath + ']'
                    }
                    void projectsEvaluated(Gradle gradle) {
                        println '# buildListener.projectsEvaluated [' + gradle.identityPath + ']'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 15:38:24 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                    }
                }
    
                if ($expression) {
                    tasks.register("run") {
                        doLast { println("ON CI") }
                    }
                } else {
                    tasks.register("run") {
                        doLast { println("NOT CI") }
                    }
                }
            """
    
            when: "running without a file present"
            configurationCacheRun "run"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                  }
                  setStrings {
                  }
                  tasks {
                    create("print") {
                      doLast {
                        println "mapThings: " + $.mapThings.keySet()
                        println "setThings: " + $.setThings.keySet()
                        println "setStrings: " + $.setStrings.keySet()
                      }
                    }
                  }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

                            println "created ss1"
                        }
                        beforeEach {
                            println "before \$it.name"
                        }
                        all {
                            println "configured \$it.name"
                        }
                        afterEach {
                            println "after \$it.name"
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/endtoend_test.go

    		if strings.HasPrefix(line, "GLOBL ") {
    			continue
    		}
    
    		// The general form of a test input line is:
    		//	// comment
    		//	INST args [// printed form] [// hex encoding]
    		parts := strings.Split(line, "//")
    		printed := strings.TrimSpace(parts[0])
    		if printed == "" || strings.HasSuffix(printed, ":") { // empty or label
    			continue
    		}
    		seq++
    
    		var hexes string
    		switch len(parts) {
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

                            System.out.println(new Anonymous1().getAnonymous().foo());
                            System.out.println(new Anonymous2().getAnonymous().foo());
                            System.out.println(new MethodLocal1().getAnonymous().foo());
                            System.out.println(new MethodLocal2().getAnonymous().foo());
                            System.out.println(new Lambda1().getAnonymous().foo());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top