Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 961 for printsp (0.12 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyLifecycleIntegrationTest.groovy

                } catch(RuntimeException e) {
                    println("get failed with: " + e.message)
                    println("get failed with cause: " + e.cause.message)
                }
                try {
                    two.prop.present
                } catch(RuntimeException e) {
                    println("present failed with: " + e.message)
                    println("present failed with cause: " + e.cause.message)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:00:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/cmd/dist/util.go

    // xatexit schedules the exit-handler f to be run when the program exits.
    func xatexit(f func()) {
    	atexits = append(atexits, f)
    }
    
    // xprintf prints a message to standard output.
    func xprintf(format string, args ...interface{}) {
    	fmt.Printf(format, args...)
    }
    
    // errprintf prints a message to standard output.
    func errprintf(format string, args ...interface{}) {
    	fmt.Fprintf(os.Stderr, format, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    }
    
    class MyTypeImpl(override val name: String) : MyType {
        // Implement other properties and methods...
    }
    
    // Usage
    val instance = MyTypeImpl("myName")
    println(instance.name) // Prints: myName
    ----
    
    [[managed_types]]
    == Using Gradle Managed Types
    
    A managed type as an abstract class or interface with no fields and whose properties are all managed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

                }
            }
        }
    
        def "fails when negative timeout is specified"() {
            given:
            buildFile << """
                task broken() {
                    doLast {
                        println "Hello"
                    }
                    timeout = Duration.ofMillis(-1)
                }
                """
    
            expect:
            2.times {
                fails "broken"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/BaseBuildScanPluginCheckInFixture.groovy

                            println "${propertyPrefix}.serviceFactoryCreate.config.buildScanRequest = \$config.buildScanRequest"
                            println "${propertyPrefix}.serviceFactoryCreate.config.autoApplied = \$config.autoApplied"
                            println "${propertyPrefix}.serviceFactoryCreate.config.taskExecutingBuild = \$config.taskExecutingBuild"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

                        println "gradle.projectsLoaded(Action) from $source"
                    } as Action)
                    gradle.projectsLoaded {
                        println "gradle.projectsLoaded(Closure) from $source"
                    }
                    gradle.addListener(new BuildAdapter() {
                        void projectsLoaded(Gradle ignored) {
                            println "gradle.addListener(BuildListener) from $source"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                System.out.println();
                System.out.println("Kotlin:       " + KotlinDslVersion.current().getKotlinVersion());
                System.out.println("Groovy:       " + ReleaseInfo.getVersion());
                System.out.println("Ant:          " + Main.getAntVersion());
                System.out.println("JVM:          " + Jvm.current());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    @TaskAction
                    void run() {
                        println "value = " + value
                        println "value.child = " + value.dir("child")
                        println "propValue = " + propValue.get()
                        println "propValue.child = " + propValue.get().dir("child")
                        println "propValue.child.mapped = " + propValue.dir("child").get()
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                        add 'b'
                    }
                  }
                  tasks {
                    create("print") {
                      doLast {
                        println "mapThings: " + ($.mapThings as List)*.keySet()
                        println "setThings: " + ($.setThings as List)
                        println "setStrings: " + ($.setStrings as List)
                      }
                    }
                  }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelPropertyTargetingRuleIntegrationTest.groovy

                        tasks.create("fromPlugin") {
                            doLast {
                                println "plugin input: $os"
                                println "plugin name: $os.name"
                            }
                        }
                    }
                }
    
                apply type: RulePlugin
    
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.6K bytes
    - Viewed (0)
Back to top