Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 366 for DEVELOPMENT (0.16 sec)

  1. .github/PULL_REQUEST_TEMPLATE.md

    1. If this is your first time, please read our contributor guidelines: https://git.k8s.io/community/contributors/guide/first-contribution.md#your-first-contribution and developer guide https://git.k8s.io/community/contributors/devel/development.md#development-guide
    2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/java-android-application/src/test/java/org/gradle/samples/ExampleUnitTest.java

    package org.gradle.samples;
    
    import org.junit.Test;
    
    import static org.junit.Assert.*;
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
     */
    public class ExampleUnitTest {
        @Test
        public void addition_isCorrect() {
            assertEquals(4, 2 + 2);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

      <description>
        The Apache Software Foundation provides support for the Apache community of open-source software projects.
        The Apache projects are characterized by a collaborative, consensus based development process, an open and
        pragmatic software license, and a desire to create high quality software that leads the way in its field.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/android-application/README.adoc

    [listing.terminal]
    ----
    $ ./gradlew build
    ----
    
    For more information, we suggest reading link:{userManualPath}/getting_started.html[Getting Started with Gradle].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 846 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/groovy/build.gradle

        conf
    }
    
    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute module("org.utils:api") using project(":api") because "we work with the unreleased development version"
            substitute module("org.utils:util:2.5") using project(":util")
        }
    }
    // end::module_to_project_substitution[]
    // tag::project_to_module_substitution[]
    configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 754 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-substitutionRule/kotlin/build.gradle.kts

    // tag::module_to_project_substitution[]
    configurations.all {
        resolutionStrategy.dependencySubstitution {
            substitute(module("org.utils:api"))
                .using(project(":api")).because("we work with the unreleased development version")
            substitute(module("org.utils:util:2.5")).using(project(":util"))
        }
    }
    // end::module_to_project_substitution[]
    // tag::project_to_module_substitution[]
    configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 796 bytes
    - Viewed (0)
  7. architecture/platforms.md

    - **core-execution**: Runs the work efficiently. This includes scheduling, execution, caching and so on.
    
    ### Software development platform
    
    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. src/unicode/casetables.go

    // TODO: This file contains the special casing rules for Turkish and Azeri only.
    // It should encompass all the languages with special casing rules
    // and be generated automatically, but that requires some API
    // development first.
    
    package unicode
    
    var TurkishCase SpecialCase = _TurkishCase
    var _TurkishCase = SpecialCase{
    	CaseRange{0x0049, 0x0049, d{0, 0x131 - 0x49, 0}},
    	CaseRange{0x0069, 0x0069, d{0x130 - 0x69, 0, 0x130 - 0x69}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 755 bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for assisting with plugin development.
     */
    @NonNullApi
    package org.gradle.plugin.devel.tasks;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 759 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/gradle-plugin/groovy/greeting-plugin/build.gradle

    // tag::plugin[]
    plugins {
        // Apply the Java Gradle plugin development plugin to add support for developing Gradle plugins
        id 'java-gradle-plugin'
    }
    
    repositories {
        // Use Maven Central for resolving dependencies.
        // You can declare any Maven/Ivy/file repository here.
        mavenCentral()
    }
    
    dependencies {
        // Use JUnit test framework for unit tests
        testImplementation 'junit:junit:4.13'
    }
    
    gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top