Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for gretty (0.11 sec)

  1. platforms/documentation/docs/src/snippets/plugins/customPlugin/kotlin/java-gradle-plugin/src/main/java/org/gradle/GreetingTask.java

        public void setGreeting(String greeting) {
            this.greeting = greeting;
        }
    
        @Input
        public String getGreeting() {
            return greeting;
        }
    
        @TaskAction
        public void greet() {
            System.out.println(greeting);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 493 bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue39634.go

    // are now syntax errors.
    //
    // The primary concern here is that these tests shouldn't crash the type checker.
    // The quality of the error messages is secondary as these are all pretty esoteric
    // or artificial test cases.
    
    package p
    
    // crash 1
    type nt1[_ any]interface{g /* ERROR "undefined" */ }
    type ph1[e nt1[e],g(d /* ERROR "undefined" */ )]s /* ERROR "undefined" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain.java

                }
            }
        }
    
        private static class DependencyToComponentIdResolverChain implements DependencyToComponentIdResolver {
            // Using an array here because we're going to iterate pretty often and it avoids the creation of an iterator
            // that checks for concurrent modification
            private final DependencyToComponentIdResolver[] resolvers;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginSpecBuilderAccessorsClassPathTest.kt

                val accessorsClass = loadClass(className)
                assertThat(
                    accessorsClass.declaredMethods.map { it.name },
                    hasItems("getMy", "getOwn", "getPlugin")
                )
    
                val expectedPluginSpec = mock<PluginDependencySpec>()
                val plugins = mock<PluginDependenciesSpec> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/greeting/groovy/buildSrc/src/main/groovy/greetings.gradle

    // end::convention[]
    
    // Create a greeting task
    abstract class GreetingTask extends DefaultTask {
        @Input
        abstract Property<String> getMessage()
    
        @TaskAction
        void greet() {
            println("Message: ${message.get()}")
        }
    }
    
    // Register the task and set the convention
    tasks.register("hello", GreetingTask) {
        message.convention(extension.message)
    }
    // end::task[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 18:30:04 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

          <organization>ASF</organization>
          <roles>
            <role>PMC Chair</role>
          </roles>
          <timezone>-5</timezone>
        </developer>
        <developer>
          <id>brett</id>
          <name>Brett Porter</name>
          <email>brett@apache.org</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>+10</timezone>
        </developer>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/TransformRegistration.java

        /**
         * Attributes that match the variant that is consumed.
         */
        ImmutableAttributes getFrom();
    
        /**
         * Attributes that match the variant that is produced.
         */
        ImmutableAttributes getTo();
    
        /**
         * Transform step for artifacts of the variant.
         */
        TransformStep getTransformStep();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. docs/en/docs/external-links.md

    # External Links and Articles
    
    **FastAPI** has a great community constantly growing.
    
    There are many posts, articles, tools, and projects, related to **FastAPI**.
    
    Here's an incomplete list of some of them.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 22 07:35:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/greeting/kotlin/buildSrc/src/main/kotlin/greetings.gradle.kts

    // end::convention[]
    
    // Create a greeting task
    abstract class GreetingTask : DefaultTask() {
        @Input
        val message = project.objects.property<String>()
    
        @TaskAction
        fun greet() {
            println("Message: ${message.get()}")
        }
    }
    
    // Register the task and set the convention
    tasks.register<GreetingTask>("hello") {
        message.convention(extension.message)
    }
    // end::task[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 18:30:04 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/JdkToolsInitializer.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    public interface JdkToolsInitializer {
        /**
         * Ensures that the JDK tools are visible on the system ClassLoader. Not really a great idea, but here for backwards
         * compatibility.
         */
        void initializeJdkTools();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top