Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 366 for DEVELOPMENT (0.92 sec)

  1. subprojects/distributions-full/build.gradle.kts

        pluginsRuntimeOnly(platform(project(":distributions-jvm")))
        pluginsRuntimeOnly(platform(project(":distributions-native")))
    
        pluginsRuntimeOnly(project(":plugin-development"))
        pluginsRuntimeOnly(project(":build-configuration"))
        pluginsRuntimeOnly(project(":build-init"))
        pluginsRuntimeOnly(project(":build-profile"))
        pluginsRuntimeOnly(project(":antlr"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/build.gradle.kts

        implementation(project(":functional"))
        implementation(project(":file-collections"))
        implementation(project(":language-jvm"))
        implementation(project(":logging"))
        implementation(project(":plugin-development"))
        implementation(project(":plugins-java-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":resources"))
        implementation(project(":snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/kotlin/greeting-plugin/build.gradle.kts

    // tag::plugin[]
    plugins {
        // Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
        `java-gradle-plugin`
    }
    
    repositories {
        // Use Maven Central for resolving dependencies
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation("junit:junit:4.13")
    }
    
    gradlePlugin {
        // Define the plugin
        val greeting by plugins.creating {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/README.md

    [Grafana sample](../../../samples/addons/grafana.yaml).
    
    ## Jsonnet
    
    Newer dashboards are generated with [Jsonnet](https://jsonnet.org/) with the [Grafonnet](https://grafana.github.io/grafonnet/index.html).
    More info on development workflow of these dashboards can be found [here](https://blog.howardjohn.info/posts/grafana-dashboard-dev/).
    This is the preferred method for any new dashboards.
    
    ## Legacy Dashboards
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 815 bytes
    - Viewed (0)
  5. doc/README.md

    Release notes should be added to `next` by editing existing files or creating
    new files. **Do not add RELNOTE=yes comments in CLs.** Instead, add a file to
    the CL (or ask the author to do so).
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. README.md

    - [Istio Developer's Guide](https://github.com/istio/istio/wiki/Preparing-for-Development) - explains how to set up and use an Istio development environment
    - [Project Conventions](https://github.com/istio/istio/wiki/Development-Conventions) - describes the conventions we use within the code base
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/ProductionComponent.java

     *
     * @since 4.5
     */
    public interface ProductionComponent extends SoftwareComponent {
        /**
         * Returns the binary of the component to use as the default for development.
         */
        Provider<? extends SoftwareComponent> getDevelopmentBinary();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/bin/mvnyjp

    # -----------------------------------------------------------------------------
    # Apache Maven YourKit Profiler Startup Script
    #
    # Environment Variable Prerequisites
    #
    #   JAVA_HOME       Must point at your Java Development Kit installation.
    #   MAVEN_OPTS      (Optional) Java runtime options used when Maven is executed.
    #   MAVEN_SKIP_RC   (Optional) Flag to disable loading of mavenrc files.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 09:02:45 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/gover/local.go

    	return t
    }
    
    func local() (goVers, toolVers string) {
    	toolVers = runtime.Version()
    	if TestVersion != "" {
    		toolVers = TestVersion
    	}
    	goVers = FromToolchain(toolVers)
    	if goVers == "" {
    		// Development branch. Use "Dev" version with just 1.N, no rc1 or .0 suffix.
    		goVers = "1." + strconv.Itoa(goversion.Version)
    		toolVers = "go" + goVers
    	}
    	return goVers, toolVers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/java/InstalledJdk.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.java;
    
    import org.gradle.api.JavaVersion;
    
    import java.io.File;
    
    /**
     * Represents a Java Development Kit machine installation.
     *
     * @since 2.11
     */
    public interface InstalledJdk {
        /**
         * The version of the Java installation.
         *
         * @return The Java version. Never returns {@code null}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top